結果

問題 No.1640 簡単な色塗り
ユーザー trineutrontrineutron
提出日時 2021-08-07 00:09:55
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,980 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 3,007 ms
コンパイル使用メモリ 260,660 KB
実行使用メモリ 49,336 KB
最終ジャッジ日時 2024-06-29 16:31:24
合計ジャッジ時間 31,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 129 ms
35,624 KB
testcase_05 AC 130 ms
35,384 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 155 ms
22,632 KB
testcase_11 AC 130 ms
19,684 KB
testcase_12 AC 116 ms
18,420 KB
testcase_13 AC 312 ms
33,516 KB
testcase_14 AC 292 ms
34,096 KB
testcase_15 AC 77 ms
12,864 KB
testcase_16 AC 90 ms
16,456 KB
testcase_17 AC 231 ms
30,560 KB
testcase_18 AC 14 ms
6,940 KB
testcase_19 AC 105 ms
17,908 KB
testcase_20 AC 160 ms
22,372 KB
testcase_21 AC 127 ms
19,200 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 183 ms
22,448 KB
testcase_24 AC 40 ms
9,604 KB
testcase_25 AC 108 ms
18,864 KB
testcase_26 AC 217 ms
28,344 KB
testcase_27 AC 70 ms
12,460 KB
testcase_28 AC 299 ms
31,948 KB
testcase_29 AC 213 ms
27,924 KB
testcase_30 AC 50 ms
8,036 KB
testcase_31 AC 1,763 ms
38,476 KB
testcase_32 AC 920 ms
29,932 KB
testcase_33 AC 472 ms
20,744 KB
testcase_34 AC 748 ms
25,276 KB
testcase_35 AC 420 ms
22,788 KB
testcase_36 AC 48 ms
7,644 KB
testcase_37 AC 73 ms
9,916 KB
testcase_38 AC 1,059 ms
31,496 KB
testcase_39 AC 198 ms
14,740 KB
testcase_40 AC 217 ms
15,264 KB
testcase_41 AC 789 ms
26,972 KB
testcase_42 AC 280 ms
18,216 KB
testcase_43 AC 302 ms
20,452 KB
testcase_44 AC 273 ms
18,872 KB
testcase_45 AC 175 ms
16,044 KB
testcase_46 AC 63 ms
9,044 KB
testcase_47 AC 33 ms
6,940 KB
testcase_48 AC 1,458 ms
30,736 KB
testcase_49 AC 11 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 1,713 ms
44,320 KB
testcase_53 AC 1,980 ms
49,336 KB
07_evil_01.txt AC 1,145 ms
68,256 KB
07_evil_02.txt AC 1,978 ms
111,072 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(i + n, 2 * n + 1, 1);
    }
    for (int i = 0; i < n; i++)
    {
        flow.add_edge(2 * n, i, 1);
    }
    for (int i = 0; i < n; i++)
    {
        flow.add_edge(i, a.at(i) + n, 1);
        flow.add_edge(i, b.at(i) + n, 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