結果
問題 | No.177 制作進行の宮森あおいです! |
ユーザー | ikd |
提出日時 | 2016-10-30 00:17:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,734 bytes |
コンパイル時間 | 609 ms |
コンパイル使用メモリ | 62,848 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-24 23:27:35 |
合計ジャッジ時間 | 3,324 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
#include<iostream> #include<vector> using namespace std; const int maV=100; const int inf=1e4; struct Edge{ int to, cut; }; vector<Edge> g[maV+2]; int used[maV+2]; int Furo(int v, int goal, int f){ if(v==goal) return f; used[v]=1; for(int j=0; j<g[v].size(); j++){ auto e=g[v][j]; if(used[e.to]||e.cut==0) continue; int _f=Furo(e.to, goal, min(f, e.cut)); if(_f!=0){ g[v][j].cut-=_f; g[e.to][v].cut+=_f; return _f; } } return 0;// } int MaFuro(int start, int goal){ int ret=0; while(1){ fill((int*)used, (int*)used+maV+2, 0); int f=Furo(start, goal, inf); if(f==0) return ret; ret+=f; } return ret; } int main(){ int W, N; cin>> W>> N; int J[N]; for(int i=0; i<N; i++) cin>> J[i]; int M; cin>> M; int C[M]; for(int i=0; i<M; i++) cin>> C[i]; int X[N][M]; fill((int*)X, (int*)X+N*M, 0); for(int i=0; i<M; i++){ int Q; cin>> Q; for(int j=0; j<Q; j++){ int k; cin>> k; X[k-1][i]=1; } } int start=0, goal=N+M+1; for(int i=0; i<N; i++){ g[start].push_back((Edge){i+1, J[i]}); g[i+1].push_back((Edge){start, 0}); } for(int j=0; j<M; j++){ g[(j+1)+N].push_back((Edge){goal, C[j]}); g[goal].push_back((Edge){(j+1)+N, 0}); } for(int i=0; i<N; i++){ for(int j=0; j<M; j++){ if(X[i][j]) continue; g[i+1].push_back((Edge){(j+1)+N, inf}); g[(j+1)+N].push_back((Edge){i+1, 0}); } } int maf=MaFuro(start, goal); cout<< maf<< endl; if(maf>=W){ cout<< "SHIROBAKO"<< endl; }else{ cout<< "BANSAKUTSUKITA"<< endl; } return 0; }