이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
const int MAX = 22;
const int MAXM = 50005;
const int INF = 0x3f3f3f3f;
int n, m, a[MAX], b[MAX], sums[1 << MAX];
bool dp[MAX][1 << MAX];
vector<int> g[MAXM];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for(int i = 1; i <= n; i++) cin >> a[i];
for(int i = 0; i < m; i++) cin >> b[i];
for(int mask = 0; mask < (1 << m); mask++){
int cur = 0;
for(int i = 0; i < m; i++)
if(mask & (1 << i)) cur += b[i];
g[cur].emplace_back(mask);
}
dp[0][0] = true;
for(int i = 1; i <= n; i++){
for(int mask = 0; mask < (1 << m); mask++){
for(auto sub : g[a[i]]){
if((mask & sub) != sub) continue;
dp[i][mask] |= (dp[i - 1][mask ^ sub]);
}
}
}
bool pos = false;
for(int mask = 0; mask < (1 << m); mask++)
pos |= dp[n][mask];
cout << (pos ? "YES" : "NO") << '\n';
exit(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... |