# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1093898 | InvMOD | 은행 (IZhO14_bank) | C++14 | 76 ms | 8640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
template<typename T> bool ckmx(T& a, const T& b){if(a < b) return a = b, true; return false;}
template<typename T> bool ckmn(T& a, const T& b){if(a > b) return a = b, true; return false;}
const int N = 20;
int n, m, a[N], b[N];
int dp[(1<<N)], knapsack[(1<<N)];
void solve()
{
cin >> n >> m;
for(int i = 0; i < n; i++){
cin >> a[i];
}
for(int i = 0; i < m; i++){
cin >> b[i];
}
dp[0] = 1;
for(int mask = 0; mask < (1<<m); mask++){
if(!dp[mask]) continue;
//can go through all permutation that form cur mask
int cur_wanted = a[dp[mask]-1];
for(int i = 0; i < m; i++){
if(mask>>i&1) continue;
int new_mask = mask | (1<<i);
if(knapsack[mask] + b[i] == cur_wanted){
if(ckmx(dp[new_mask], dp[mask]+1)){
knapsack[new_mask] = 0;
}
}
else{
if(ckmx(dp[new_mask], dp[mask])){
knapsack[new_mask] = knapsack[mask] + b[i];
}
}
}
}
cout << (dp[(1<<m)-1] == n+1 ? "YES" : "NO") <<"\n";
}
int32_t main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
#define name "InvMOD"
if(fopen(name".INP", "r")){
freopen(name".INP", "r", stdin);
freopen(name".OUT", "w", stdout);
}
solve();
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... |