# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
777726 | Sandarach151 | 은행 (IZhO14_bank) | C++17 | 1082 ms | 14676 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
vector<int> states[20];
bool visited[20][1<<20];
bool ans[20][1<<20];
int backtrack(int person, int curstate, int n){
if(person==n){
return true;
}
if(visited[person][curstate]){
return ans[person][curstate];
}
visited[person][curstate] = true;
bool res = false;
for(int i=0; i<states[person].size(); i++){
if((states[person][i] & curstate)==0){
res = res | backtrack(person+1, (states[person][i] | curstate), n);
if(res==true){
break;
}
}
}
ans[person][curstate]=res;
return res;
}
int main(){
int n, m;
cin >> n >> m;
int people[n];
int notes[m];
for(int i=0; i<n; i++){
cin >> people[i];
}
for(int i=0; i<m; i++){
cin >> notes[i];
}
for(int i=0; i<n; i++){
for(int curstate = 0; curstate < (1<<20); curstate++){
visited[i][curstate]=false;
}
}
for(int curstate = 0; curstate < (1<<20); curstate++){
int sum = 0;
for(int j=0; j<m; j++){
if((curstate & (1<<j))!=0){
sum+=notes[j];
}
}
for(int i=0; i<n; i++){
if(sum==people[i]){
states[i].push_back(curstate);
}
}
}
backtrack(0, 0, n) ? cout << "YES\n" : 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... |