# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1124848 | njoop | 은행 (IZhO14_bank) | C++17 | 3 ms | 4416 KiB |
#include <bits/stdc++.h>
using namespace std;
int cov[1000010], mon[1000010], notes[30], ppl[30], n, m;
int main() {
cin >> n >> m;
for(int i=1; i<=n; i++) {
cin >> ppl[i];
}
for(int i=1; i<=m; i++) {
cin >> notes[i];
}
for(int i=0; i<=(1<<20); i++) {
cov[i] = -1;
}
cov[0] = 0;
for(int i=0; i<(1<<m); i++) {
for(int j=0; j<m; j++) {
if(i & (1 << j) == 0) continue;
int pre = i & ~(1 << j);
if(cov[pre] == -1) continue;
if(mon[pre]+notes[j+1] < ppl[cov[pre]+1]) {
cov[i] = cov[pre];
mon[i] = mon[pre]+notes[j+1];
} else if(mon[pre]+notes[j+1] == ppl[cov[pre]+1]) {
cov[i] = cov[pre]+1;
mon[i] = 0;
}
}
if(cov[i] == n) {
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... |