結果

問題 No.1640 簡単な色塗り
ユーザー trineutrontrineutron
提出日時 2021-08-07 00:06:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 881 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 259,640 KB
実行使用メモリ 49,420 KB
最終ジャッジ日時 2024-06-29 16:34:50
合計ジャッジ時間 31,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 124 ms
35,056 KB
testcase_05 AC 129 ms
35,188 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 2 ms
5,376 KB
testcase_10 AC 182 ms
21,608 KB
testcase_11 AC 140 ms
19,188 KB
testcase_12 AC 114 ms
19,696 KB
testcase_13 AC 290 ms
36,848 KB
testcase_14 AC 303 ms
36,808 KB
testcase_15 AC 69 ms
12,912 KB
testcase_16 AC 87 ms
18,580 KB
testcase_17 AC 239 ms
33,144 KB
testcase_18 AC 14 ms
5,504 KB
testcase_19 AC 112 ms
19,576 KB
testcase_20 AC 156 ms
21,048 KB
testcase_21 AC 124 ms
20,508 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 188 ms
22,284 KB
testcase_24 AC 37 ms
10,464 KB
testcase_25 AC 107 ms
19,880 KB
testcase_26 AC 198 ms
31,720 KB
testcase_27 AC 68 ms
12,512 KB
testcase_28 AC 291 ms
35,836 KB
testcase_29 AC 201 ms
31,632 KB
testcase_30 AC 48 ms
8,104 KB
testcase_31 AC 1,726 ms
38,884 KB
testcase_32 AC 987 ms
30,016 KB
testcase_33 AC 483 ms
21,024 KB
testcase_34 AC 785 ms
25,120 KB
testcase_35 AC 495 ms
23,068 KB
testcase_36 AC 49 ms
7,964 KB
testcase_37 AC 81 ms
10,244 KB
testcase_38 AC 1,353 ms
31,884 KB
testcase_39 AC 206 ms
15,152 KB
testcase_40 AC 217 ms
15,480 KB
testcase_41 AC 887 ms
27,548 KB
testcase_42 AC 289 ms
18,572 KB
testcase_43 AC 310 ms
20,700 KB
testcase_44 AC 289 ms
19,308 KB
testcase_45 AC 179 ms
16,276 KB
testcase_46 AC 60 ms
8,988 KB
testcase_47 AC 31 ms
6,636 KB
testcase_48 AC 1,381 ms
31,032 KB
testcase_49 AC 10 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 TLE -
testcase_53 AC 1,697 ms
49,420 KB
07_evil_01.txt AC 1,110 ms
67,824 KB
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

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);
    }
    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(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