# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
886750 | TahirAliyev | 은행 (IZhO14_bank) | C++17 | 465 ms | 173148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define oo 1e9
#define pb push_back
const int MAX = 21;
int n, m;
int a[MAX], b[MAX];
vector<int> ways[MAX];
int dp[MAX][(1 << MAX)];
bool rec(int mask, int i){
if(i == n + 1) return 1;
if(dp[i][mask] != -1) return dp[i][mask];
bool ans = 0;
for(int w : ways[i]){
if((mask & w) == w){
ans |= rec(mask ^ w, i + 1);
}
}
return dp[i][mask] = ans;
}
int main(){
memset(dp, -1, sizeof(dp));
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 sum = 0;
for(int i = 0; i < m; i++){
if((1 << i) & mask) sum += b[i];
}
for(int i = 1; i <= n; i++){
if(sum == a[i]){
ways[i].push_back(mask);
}
}
}
if(rec((1 << m) - 1, 1)) cout << "YES\n";
else cout << "NO\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |