# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
880935 | Younis_Dwai | 은행 (IZhO14_bank) | C++14 | 66 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define in insert
#define F first
#define S second
#define pb push_back
#define endl "\n"
//#define mid (l+r)/2
#define all(v) v.begin(),v.end()
//#define pop pop_back
using namespace std;
const int M=1e9+7;
int n,m;
int a[25],b[25];
int dp[24][3000009];
vector<int> adj[200009];
bool rec(int id , int mask){
if(dp[id][mask]!=-1) return dp[id][mask];
else if(id==n) return 1;
bool c=0;
for(auto u : adj[a[id]]){
if((mask&u)) continue ;
c=max(c,rec(id+1,(mask|u)));
if(c==1) break;
}
return dp[id][mask]=c;
}
int32_t main(){
freopen("bank.in","r",stdin);freopen("bank.out","w",stdout);
memset(dp,-1,sizeof dp);
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++){
int sum=0;
for(int i=0;i<m;i++){
if((mask&(1<<i))) sum+=b[i];
}
adj[sum].pb(mask);
}
if(rec(0,0)==1) cout<<"YES";
else 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... |