이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define nmax 25
int n, m, a[nmax], b[nmax], f[nmax][1<<21];
int dp(int i, int mask, int64_t sum)
{
if(f[i][mask] != -1)
return f[i][mask];
if(i >= n)
return f[i][mask] = 1;
f[i][mask] = 0;
for(int t = 0; t < m; ++t) {
if((mask >> t) & 1) continue;
if(sum + b[t] < a[i]) {
if(dp(i, mask | (1 << t), sum + b[t])) f[i][mask] = 1;
}
else if(sum + b[t] == a[i]) {
if(dp(i + 1, mask | (1 << t), 0)) f[i][mask] = 1;
}
}
return f[i][mask];
}
int main()
{
ios::sync_with_stdio(false); cin.tie(NULL);
cin >> n >> m;
for(int i = 0; i < n; ++i)
cin >> a[i];
for(int i = 0; i < m; ++i)
cin >> b[i];
memset(f, -1, sizeof(f));
cout << (dp(0, 0, 0) ? "YES" : "NO") << '\n';
return 0;
}
# | 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... |