# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
170036 | tselmegkh | 은행 (IZhO14_bank) | C++14 | 1067 ms | 728 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int a[25], b[25], n, m;
bool dp[25][(1 << 21)];
bool vis[25][(1 << 21)];
inline bool go(int v, int mask){
if(v == n){
return 1;
}
if(vis[v][mask])return dp[v][mask];
vis[v][mask] = 1;
bool possible = 0;
int totsum = 0;
/*for(int i = 0; i < m; i++){
if(!(mask & (1 << i)))totsum += mask;
}
if(totsum < a[v]){
return 0;
}*/
for(int i = 0; i < (1 << m); i++){
int sum = 0;
int tmp = i;
while(tmp){
int lsone = (tmp) & (-tmp);
int j = __builtin_ctz(lsone);
sum += b[j];
tmp -= lsone;
}
if(sum == a[v] && !(i & mask)){
possible |= go(v + 1, mask | i);
}
}
return dp[v][mask] = possible;
}
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> m;
for(int i = 0; i < n; i++){
cin >> a[i];
}
sort(a, a + n, greater<int>());
for(int i = 0; i < m; i++){
cin >> b[i];
}
if(go(0, 0)){
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... |