# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
883236 | cemil1234 | 은행 (IZhO14_bank) | C++17 | 109 ms | 16876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ull unsigned long long
void solve(){
long long n,m,x;
cin>>n>>m;
vector<long long>pp(n),bn(m);
for(long long i = 0;i<n;i++){
cin>>pp[i];
}
for(long long i = 0;i<m;i++){
cin>>bn[i];
}
vector<long long>cnt(1<<m,-1),left(1<<m,-1);
cnt[0] = 0;
left[0] = 0;
for(long long i = 0;i<(1<<m);i++){
for(long long j = 0;j<m;j++){
if((i&(1<<j)) == 0){
continue;
}
long long pre = i^(1<<j);
if(cnt[pre] == -1){
continue;
}
long long nleft = left[pre]+bn[j];
if(nleft == pp[cnt[pre]]){
left[i] = 0;
cnt[i] = cnt[pre]+1;
}
else if(nleft<pp[cnt[pre]]){
left[i] = nleft;
cnt[i] = cnt[pre];
}
}
if(cnt[i] == n){
cout<<"YES\n";
return;
}
}
cout<<"NO\n";
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t = 1;
//cin>>t;
while(t--){
solve();
}
}
컴파일 시 표준 에러 (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... |