結果
問題 | No.1640 簡単な色塗り |
ユーザー | trineutron |
提出日時 | 2021-08-06 23:40:16 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 2,940 ms |
コンパイル使用メモリ | 258,540 KB |
実行使用メモリ | 44,068 KB |
最終ジャッジ日時 | 2024-06-29 16:27:02 |
合計ジャッジ時間 | 23,444 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 46 ms
7,872 KB |
testcase_31 | AC | 1,190 ms
38,380 KB |
testcase_32 | AC | 846 ms
29,232 KB |
testcase_33 | AC | 427 ms
20,760 KB |
testcase_34 | AC | 634 ms
25,168 KB |
testcase_35 | AC | 416 ms
22,804 KB |
testcase_36 | AC | 48 ms
7,728 KB |
testcase_37 | AC | 77 ms
9,972 KB |
testcase_38 | AC | 999 ms
31,556 KB |
testcase_39 | AC | 192 ms
14,884 KB |
testcase_40 | AC | 210 ms
15,176 KB |
testcase_41 | AC | 681 ms
27,532 KB |
testcase_42 | AC | 255 ms
18,328 KB |
testcase_43 | AC | 267 ms
20,548 KB |
testcase_44 | AC | 249 ms
18,984 KB |
testcase_45 | AC | 165 ms
16,256 KB |
testcase_46 | AC | 56 ms
9,048 KB |
testcase_47 | AC | 29 ms
6,644 KB |
testcase_48 | AC | 1,037 ms
30,604 KB |
testcase_49 | AC | 10 ms
5,376 KB |
testcase_50 | AC | 1 ms
5,376 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
07_evil_01.txt | WA | - |
07_evil_02.txt | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/maxflow> using namespace std; using namespace atcoder; int main() { int n; cin >> n; vector<int> a(n), b(n); for (int i = 0; i < n; i++) { cin >> a.at(i) >> b.at(i); a.at(i)--; b.at(i)--; } mf_graph<int> flow(2 * n + 2); for (int i = 0; i < n; i++) { flow.add_edge(2 * n, i, 1); flow.add_edge(i, a.at(i) + n, 1); flow.add_edge(i, b.at(i) + n, 1); flow.add_edge(i + n, 2 * n + 1, 1); } if (flow.flow(2 * n, 2 * n + 1) < n) { puts("No"); return 0; } puts("Yes"); return 0; for (auto &&e : flow.edges()) { if (e.from < n and e.flow) { cout << e.to - n + 1 << endl; } } return 0; }