結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 128 ms
39,076 KB
testcase_05 AC 128 ms
39,592 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 176 ms
21,540 KB
testcase_11 AC 132 ms
18,952 KB
testcase_12 AC 117 ms
17,876 KB
testcase_13 AC 328 ms
33,048 KB
testcase_14 AC 333 ms
33,104 KB
testcase_15 AC 73 ms
12,880 KB
testcase_16 AC 95 ms
16,708 KB
testcase_17 AC 243 ms
33,348 KB
testcase_18 AC 14 ms
5,760 KB
testcase_19 AC 113 ms
17,792 KB
testcase_20 AC 167 ms
20,976 KB
testcase_21 AC 132 ms
18,792 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 198 ms
22,116 KB
testcase_24 AC 40 ms
10,516 KB
testcase_25 AC 113 ms
17,928 KB
testcase_26 AC 220 ms
31,708 KB
testcase_27 AC 71 ms
12,648 KB
testcase_28 AC 287 ms
32,144 KB
testcase_29 AC 211 ms
31,584 KB
testcase_30 AC 50 ms
8,068 KB
testcase_31 TLE -
testcase_32 AC 1,071 ms
29,776 KB
testcase_33 AC 565 ms
20,692 KB
testcase_34 AC 946 ms
25,004 KB
testcase_35 AC 500 ms
22,868 KB
testcase_36 AC 50 ms
7,932 KB
testcase_37 AC 80 ms
10,028 KB
testcase_38 AC 1,509 ms
31,800 KB
testcase_39 AC 218 ms
15,084 KB
testcase_40 AC 240 ms
15,460 KB
testcase_41 AC 934 ms
27,388 KB
testcase_42 AC 304 ms
18,392 KB
testcase_43 AC 325 ms
20,700 KB
testcase_44 AC 247 ms
19,208 KB
testcase_45 AC 180 ms
16,300 KB
testcase_46 AC 60 ms
9,096 KB
testcase_47 AC 32 ms
6,864 KB
testcase_48 AC 1,344 ms
30,960 KB
testcase_49 AC 11 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,975 ms
50,828 KB
07_evil_01.txt AC 1,212 ms
67,596 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(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);
    }
    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