結果

問題 No.1640 簡単な色塗り
ユーザー trineutrontrineutron
提出日時 2021-08-07 00:10:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,457 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 2,758 ms
コンパイル使用メモリ 259,928 KB
実行使用メモリ 49,032 KB
最終ジャッジ日時 2024-06-29 16:35:35
合計ジャッジ時間 26,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 110 ms
34,964 KB
testcase_05 AC 114 ms
35,060 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 143 ms
21,624 KB
testcase_11 AC 113 ms
18,848 KB
testcase_12 AC 98 ms
17,772 KB
testcase_13 AC 249 ms
32,792 KB
testcase_14 AC 248 ms
32,984 KB
testcase_15 AC 72 ms
12,948 KB
testcase_16 AC 83 ms
16,796 KB
testcase_17 AC 199 ms
33,452 KB
testcase_18 AC 13 ms
5,760 KB
testcase_19 AC 94 ms
17,676 KB
testcase_20 AC 137 ms
20,888 KB
testcase_21 AC 109 ms
18,564 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 155 ms
22,036 KB
testcase_24 AC 34 ms
10,404 KB
testcase_25 AC 94 ms
17,952 KB
testcase_26 AC 186 ms
31,720 KB
testcase_27 AC 61 ms
12,480 KB
testcase_28 AC 232 ms
31,880 KB
testcase_29 AC 182 ms
31,632 KB
testcase_30 AC 47 ms
8,128 KB
testcase_31 AC 1,309 ms
38,132 KB
testcase_32 AC 789 ms
29,568 KB
testcase_33 AC 457 ms
20,692 KB
testcase_34 AC 684 ms
24,804 KB
testcase_35 AC 441 ms
22,752 KB
testcase_36 AC 45 ms
7,748 KB
testcase_37 AC 71 ms
10,000 KB
testcase_38 AC 884 ms
31,668 KB
testcase_39 AC 184 ms
14,944 KB
testcase_40 AC 207 ms
15,380 KB
testcase_41 AC 735 ms
27,264 KB
testcase_42 AC 266 ms
18,324 KB
testcase_43 AC 274 ms
20,512 KB
testcase_44 AC 256 ms
18,960 KB
testcase_45 AC 165 ms
16,112 KB
testcase_46 AC 55 ms
8,944 KB
testcase_47 AC 30 ms
6,644 KB
testcase_48 AC 923 ms
30,832 KB
testcase_49 AC 9 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1,405 ms
41,792 KB
testcase_53 AC 1,457 ms
49,032 KB
07_evil_01.txt AC 806 ms
67,204 KB
07_evil_02.txt AC 1,797 ms
124,384 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(i, a.at(i) + n, 1);
        flow.add_edge(i, b.at(i) + n, 1);
    }
    for (int i = 0; i < n; i++)
    {
        flow.add_edge(2 * n, i, 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