제출 #595971

#제출 시각아이디문제언어결과실행 시간메모리
595971Belphegor은행 (IZhO14_bank)C++14
0 / 100
104 ms41708 KiB
#include<bits/stdc++.h> using namespace std; typedef long long ll; int n,m; vector<int>graph[22]; int A[22],B[22],sum[(1<<20)]; char dp[22][(1<<20)]; char f(int cur,int state){ char&ret = dp[cur][state]; if(~ret) return ret; ret = 0; if(cur==n) return ret = 1; if(A[cur]>sum[(1<<m)-1-state]) return ret; for(int s : graph[cur]){ if(s&state) continue; ret|=f(cur+1,state|s); } return ret; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); n = 20,m = 20; for(int i=0; i<n; i++) A[i] = 10; for(int i=0; i<m; i++) B[i] = 1; for(int i=1; i<(1<<m); i++){ int tot = 0; for(int j=0; j<m; j++) if(i&(1<<j)) tot+=B[j]; for(int j=0; j<n; j++) if(A[j]==tot) graph[j].emplace_back(i); sum[i] = tot; } for(int i=n; i>=0; i--) A[i]+=A[i+1]; memset(dp,-1,sizeof(dp)); cout<<(f(0,0)?"YES":"NO"); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...