이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#define fast ios_base::sync_with_stdio(0) , cin.tie(0) , cout.tie(0)
#define endl '\n'
#define int long long
#define f first
#define mp make_pair
#define s second
using namespace std;
int n, m;
int p[20], b[20];
signed main()
{
fast;
cin >> n >> m;
for(int i = 0; i < n; i++) cin >> p[i];
for(int i = 0; i < m; i++) cin >> b[i];
if(m <= 10){
sort(b, b + m);
do{
int add = 0, tot = 0;
for(int i = 0; i < m; i++){
tot += b[i];
if(add == n) break;
if(tot > p[add]) break;
if(tot == p[add]) add++, tot = 0;
}
if(add == n){
cout << "YES" << endl; return 0;
}
}while(next_permutation(b, b+m));
cout << "NO" << endl;
}
else{
bool ans = false;
for(int msk = 0; msk < (1 << m); msk++){
int add = 0;
for(int i = 0; i < m; i++) if(msk & (1 << i)) add += b[i];
if(add == p[0]) ans = true;
}
cout << (ans ? "YES" : "NO") << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |