# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
722574 | PVSekhar | 은행 (IZhO14_bank) | C++14 | 107 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const ll MOD = 1000000007;
int main()
{
freopen("bank.in", "r", stdin);
freopen("bank.out", "w", stdout);
int n,m;
cin>>n>>m;
int a[n],b[m];
for (int i = 0; i < n; i++)cin>>a[i];
for (int i = 0; i < m; i++)cin>>b[i];
vector<pair<int,int>> dp((1<<m),{0,-1});// keeping 'a' fixed stores the index till which the first part of the permutaion can be used and what more is needed to pay a[index+1]
dp[0].second=a[0];
bool check=false;
pair<int,int> p;
for (int i = 1; i < (1<<m); i++)
{
for (int j = 0; j < m; j++)
{
if(i&(1<<j)){
p=dp[i^(1<<j)];
// cout<<i<<j<<endl;
if(p.second<b[j])continue;
p.second-=b[j];
// cout<<i<<" "<<j<<p.first<<" "<<p.second<<endl;
if(p.second==0){
p.first++;
if(p.first==n){
check=true;
dp[i]=p;
break;
}
p.second=a[p.first];
}
if(p.first>=dp[i].first){
dp[i]=p;
}
}
}
}
if(check){
cout<<"YES"<<endl;
}else{
cout<<"NO"<<endl;
}
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... |