結果

問題 No.1640 簡単な色塗り
ユーザー trineutrontrineutron
提出日時 2021-08-06 23:47:11
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 1,213 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 4,427 ms
コンパイル使用メモリ 165,952 KB
実行使用メモリ 47,140 KB
最終ジャッジ日時 2024-06-29 16:30:00
合計ジャッジ時間 26,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 111 ms
35,136 KB
testcase_05 AC 111 ms
35,060 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 147 ms
22,396 KB
testcase_11 AC 113 ms
19,208 KB
testcase_12 AC 98 ms
17,444 KB
testcase_13 AC 249 ms
33,780 KB
testcase_14 AC 246 ms
32,644 KB
testcase_15 AC 65 ms
12,724 KB
testcase_16 AC 81 ms
16,616 KB
testcase_17 AC 209 ms
35,960 KB
testcase_18 AC 13 ms
6,944 KB
testcase_19 AC 94 ms
17,884 KB
testcase_20 AC 138 ms
21,504 KB
testcase_21 AC 114 ms
19,640 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 163 ms
22,480 KB
testcase_24 AC 36 ms
10,344 KB
testcase_25 AC 98 ms
18,064 KB
testcase_26 AC 191 ms
33,272 KB
testcase_27 AC 62 ms
12,336 KB
testcase_28 AC 233 ms
31,900 KB
testcase_29 AC 177 ms
32,032 KB
testcase_30 AC 44 ms
7,612 KB
testcase_31 AC 973 ms
36,416 KB
testcase_32 AC 872 ms
28,572 KB
testcase_33 AC 435 ms
20,244 KB
testcase_34 AC 555 ms
25,464 KB
testcase_35 AC 405 ms
21,876 KB
testcase_36 AC 44 ms
7,476 KB
testcase_37 AC 69 ms
9,720 KB
testcase_38 AC 978 ms
30,612 KB
testcase_39 AC 187 ms
14,628 KB
testcase_40 AC 205 ms
14,796 KB
testcase_41 AC 571 ms
26,792 KB
testcase_42 AC 247 ms
17,556 KB
testcase_43 AC 266 ms
19,400 KB
testcase_44 AC 251 ms
18,212 KB
testcase_45 AC 166 ms
15,488 KB
testcase_46 AC 56 ms
8,792 KB
testcase_47 AC 29 ms
6,944 KB
testcase_48 AC 906 ms
29,988 KB
testcase_49 AC 9 ms
6,944 KB
testcase_50 AC 1 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 1,112 ms
40,524 KB
testcase_53 AC 1,213 ms
47,140 KB
07_evil_01.txt AC 828 ms
67,144 KB
07_evil_02.txt AC 1,630 ms
127,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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");
    for (auto &&e : flow.edges())
    {
        if (e.from < n and e.flow)
        {
            cout << e.to - n + 1 << '\n';
        }
    }
    return 0;
}
0