# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
337888 | kutbilim_one | 은행 (IZhO14_bank) | C++14 | 527 ms | 12012 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define all(x) x.begin(), x.end()
#define int long long
signed main(){
ios_base::sync_with_stdio(false);
cin.tie();
int n, m;
cin >> n >> m;
vector<int> a(n), b(m);
for(int i = 0; i < n; i++) cin >> a[i];
for(int j = 0; j < m; j++) cin >> b[j];
int maxx = *max_element(all(a));
vector<int> pass[1 + maxx];
for(int bin = 1; bin < (1 << m); bin++){
int i = 0, sum = 0, temp = bin;
while(temp){
if(temp & 1) sum += b[i];
temp >>= 1;
i++;
}
if(sum <= maxx) pass[sum].push_back(bin);
}
vector< vector<bool> > dp(n, vector<bool> (1 << m, false));
for(int i = 0; i < pass[a[0]].size(); i++){
dp[0][pass[a[0]][i]] = true;
}
for(int i = 1; i < n; i++){
int good = 0;
for(int bin = 0; bin < (1 << m); bin++){
if(!dp[i-1][bin]) continue;
for(auto last : pass[a[i]])
if(!(last & bin)) dp[i][last|bin] = good = true;
}
if(!good) break;
}
bool ans = false;
for(int i = 0; !ans && i < (1 << m); i++){
if(dp[n-1][i]) ans = true;
}
if(ans) cout << "YES";
else 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... |