結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 114 ms
39,588 KB
testcase_05 AC 115 ms
39,076 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 141 ms
21,940 KB
testcase_11 AC 113 ms
20,936 KB
testcase_12 AC 105 ms
19,704 KB
testcase_13 AC 253 ms
37,148 KB
testcase_14 AC 252 ms
37,212 KB
testcase_15 AC 64 ms
13,036 KB
testcase_16 AC 82 ms
18,744 KB
testcase_17 AC 211 ms
33,452 KB
testcase_18 AC 12 ms
5,632 KB
testcase_19 AC 98 ms
19,732 KB
testcase_20 AC 140 ms
21,248 KB
testcase_21 AC 114 ms
20,772 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 157 ms
22,496 KB
testcase_24 AC 39 ms
10,656 KB
testcase_25 AC 97 ms
19,880 KB
testcase_26 AC 190 ms
32,140 KB
testcase_27 AC 61 ms
12,624 KB
testcase_28 AC 244 ms
36,124 KB
testcase_29 AC 185 ms
32,092 KB
testcase_30 AC 45 ms
8,064 KB
testcase_31 AC 1,311 ms
39,648 KB
testcase_32 AC 995 ms
29,992 KB
testcase_33 AC 487 ms
20,824 KB
testcase_34 AC 720 ms
25,104 KB
testcase_35 AC 473 ms
22,992 KB
testcase_36 AC 45 ms
7,808 KB
testcase_37 AC 74 ms
10,120 KB
testcase_38 AC 1,119 ms
31,916 KB
testcase_39 AC 193 ms
15,180 KB
testcase_40 AC 217 ms
15,496 KB
testcase_41 AC 744 ms
27,576 KB
testcase_42 AC 274 ms
18,516 KB
testcase_43 AC 285 ms
20,764 KB
testcase_44 AC 268 ms
19,196 KB
testcase_45 AC 162 ms
16,132 KB
testcase_46 AC 55 ms
9,044 KB
testcase_47 AC 30 ms
6,864 KB
testcase_48 AC 1,177 ms
31,748 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1,448 ms
42,148 KB
testcase_53 AC 1,456 ms
49,848 KB
07_evil_01.txt AC 831 ms
68,568 KB
07_evil_02.txt AC 1,712 ms
129,052 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, 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);
    }
    for (int i = 0; i < n; i++)
    {
        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