# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1001468 | reginox | 은행 (IZhO14_bank) | C++17 | 56 ms | 2520 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define ld long double
#define all(v) begin(v), end(v)
#define pi pair<int, int>
#define vi vector<int>
#define task "test"
using namespace std;
const int maxn = 20;
int n, m, a[maxn], b[maxn];
bool dp[maxn][1<<maxn];
vector<int> cnt[maxn];
int main(){
if(fopen(task".inp","r")){
freopen(task".inp","r",stdin);
freopen(task".out","w",stdout);
}
ios_base::sync_with_stdio(0); cin.tie(0);
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 i = 0; i < 1<<m; i++){
int sum = 0;
for(int j = 0; j < m; j++){
if(i & (1<<j)) sum += b[j];
}
// if(sum > 1000) continue;
for(int j = 1; j <= n; j++){
if(sum == a[j]) cnt[j].push_back(i);
}
}
for(auto x:cnt[1]){
dp[1][x] = true;
}
for(int j = 2; j <= n; j++){
for(auto x:cnt[j]){
int t = x ^ ((1<<n)-1);
for(int sub = t; sub > 0; sub = (sub-1)&t){
dp[j][x^sub] |= dp[j-1][sub];
}
}
}
for(int i = 0; i < 1<<m; i++){
if(dp[n][i]){
cout << "YES";
return 0;
}
}
cout << "NO";
return 0;
}
컴파일 시 표준 에러 (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... |