# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
961548 | doducanh | 은행 (IZhO14_bank) | C++14 | 102 ms | 8560 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int leftovers[(1<<20)+7];
int people_cover[(1<<20)+7];
int a[25],b[25];
int n,m;
main()
{
cin>>n>>m;
for(int i=0;i<n;i++)cin>>a[i];
for(int i=0;i<m;i++)cin>>b[i];
for(int mask=1;mask<(1<<m);mask++)people_cover[mask]=-1;
people_cover[0]=0;
leftovers[0]=0;
for(int mask=1;mask<(1<<m);mask++){
for(int i=0;i<=m;i++){
if((mask>>i)&1){
int prev=(mask^(1<<i));
if(people_cover[prev]==-1)continue;
int amt=leftovers[prev]+b[i];
if(amt<a[people_cover[prev]]){
leftovers[mask]=amt;
people_cover[mask]=people_cover[prev];
}
else if(amt==a[people_cover[prev]]){
leftovers[mask]=0;
people_cover[mask]=people_cover[prev]+1;
}
}
}
if(people_cover[mask]==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... |