結果
問題 | No.177 制作進行の宮森あおいです! |
ユーザー | Ymgch_K |
提出日時 | 2017-07-23 15:57:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 2,341 bytes |
コンパイル時間 | 1,641 ms |
コンパイル使用メモリ | 173,896 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 10:57:23 |
合計ジャッジ時間 | 2,563 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,820 KB |
testcase_01 | AC | 4 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 4 ms
6,816 KB |
testcase_05 | AC | 6 ms
6,816 KB |
testcase_06 | AC | 14 ms
6,816 KB |
testcase_07 | AC | 4 ms
6,816 KB |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 23 ms
6,820 KB |
testcase_10 | AC | 31 ms
6,816 KB |
testcase_11 | AC | 27 ms
6,820 KB |
testcase_12 | AC | 18 ms
6,820 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | AC | 4 ms
6,816 KB |
testcase_15 | AC | 3 ms
6,816 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; struct edge { int to, cap, rev; }; bool used[101010]; vector<edge> g[101010]; static const int INF = 0x3f3f3f3f; void add_edge(int from, int to, int cap) { g[from].push_back((edge) { to, cap, (int)g[to].size() }); g[to].push_back((edge) { from, 0, (int)g[from].size() - 1 }); //cout << "from to cap " << from << ' ' << to << ' ' << cap << endl; } int dfs(int v, int t, int f) { if (v == t) return f; used[v] = true; for (int i = 0; i < g[v].size(); i ++) { edge& e = g[v][i]; if (!used[e.to] && e.cap > 0) { int d = dfs(e.to, t, min(f, e.cap)); if (d > 0) { e.cap -= d; g[e.to][e.rev].cap += d; return d; } } } return 0; } int MaxFlow(int s, int t) { int flow = 0; while (true) { memset(used, false, sizeof(used)); int f = dfs(s, t, INF); if (f == 0) return flow; flow += f; } } int main() { int w; cin >> w; int n; cin >> n; vector<int> jj(n); for (int i = 0; i < n; i ++) cin >> jj[i]; int m; cin >> m; vector<int> c(m); for (int i = 0; i < m; i ++) cin >> c[i]; int s = n + m, t = n + m + 1; for (int i = 0; i < n; i ++) add_edge(s, i, jj[i]); for (int i = 0; i < m; i ++) add_edge(n + i, t, c[i]); for (int i = 0; i < m; i ++) { int q; cin >> q; vector<bool> can(n, true); for (int j = 0; j < q; j ++) { int x; cin >> x; x --; can[x] = false; } for (int j = 0; j < n; j ++) { if (can[j]) { add_edge(j, n + i, INF); } } } //cerr << "s = " << s << " t = " << t << endl; if (MaxFlow(s, t) < w) cout << "BANSAKUTSUKITA" << endl; else cout << "SHIROBAKO" << endl; return 0; }