이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int ll
#define MAX LLONG_MAX
#define st first
#define nd second
#define endl '\n'
#define SZ(x) ((int)x.size())
#define ALL(x) x.begin(), x.end()
typedef long long ll;
typedef pair< int, int > ii;
typedef pair< int, ii > iii;
typedef vector< int > vi;
typedef vector< ii > vii;
typedef vector< iii > viii;
typedef vector< vi > vvi;
typedef vector< vii > vvii;
typedef vector< viii > vviii;
const int N = 25;
int n, m, a[N], b[N], sum[1 << N];
bool dp[N][1 << N], vis[N][1 << N];
vi avai[N];
bool dfs(int i, int state){
if(vis[i][state]) return dp[i][state];
vis[i][state] = true;
if(i == n) return dp[i][state] = true;
bool ans = false;
for(auto tmp: avai[i]){
if(state & tmp) continue;
ans |= dfs(i+1, state|tmp);
}
return dp[i][state] = ans;
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for(int i=0; i<n; i++) cin >> a[i];
for(int i=0; i<m; i++) cin >> b[i];
for(int state=0; state<(1<<m); state++){
for(int i=0; (1<<i)<=state; i++){
if((state & (1<<i)) == 0){
sum[state | (1<<i)] = sum[state] + b[i];
}
}
for(int i=0; i<n; i++){
if(sum[state] == a[i]){
avai[i].emplace_back(state);
}
}
}
cout << (dfs(0, 0) ? "YES" : "NO");
}
# | 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... |