結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 131 ms
35,064 KB
testcase_05 AC 132 ms
35,060 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 166 ms
21,608 KB
testcase_11 AC 128 ms
19,036 KB
testcase_12 AC 111 ms
17,648 KB
testcase_13 AC 300 ms
32,744 KB
testcase_14 AC 282 ms
32,936 KB
testcase_15 AC 79 ms
12,864 KB
testcase_16 AC 93 ms
16,448 KB
testcase_17 AC 233 ms
29,132 KB
testcase_18 AC 14 ms
5,760 KB
testcase_19 AC 110 ms
17,524 KB
testcase_20 AC 160 ms
20,964 KB
testcase_21 AC 128 ms
18,684 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 181 ms
22,056 KB
testcase_24 AC 40 ms
9,608 KB
testcase_25 AC 109 ms
17,708 KB
testcase_26 AC 221 ms
27,624 KB
testcase_27 AC 72 ms
12,460 KB
testcase_28 AC 275 ms
31,736 KB
testcase_29 AC 209 ms
27,504 KB
testcase_30 AC 53 ms
7,908 KB
testcase_31 AC 1,536 ms
38,380 KB
testcase_32 AC 1,252 ms
29,312 KB
testcase_33 AC 555 ms
20,748 KB
testcase_34 AC 815 ms
24,564 KB
testcase_35 AC 483 ms
22,912 KB
testcase_36 AC 51 ms
7,648 KB
testcase_37 AC 81 ms
9,924 KB
testcase_38 AC 1,386 ms
31,504 KB
testcase_39 AC 206 ms
14,736 KB
testcase_40 AC 225 ms
15,264 KB
testcase_41 AC 809 ms
27,132 KB
testcase_42 AC 279 ms
18,340 KB
testcase_43 AC 292 ms
20,672 KB
testcase_44 AC 282 ms
18,876 KB
testcase_45 AC 187 ms
16,172 KB
testcase_46 AC 63 ms
9,096 KB
testcase_47 AC 33 ms
6,708 KB
testcase_48 AC 1,592 ms
30,604 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 AC 1,918 ms
41,996 KB
testcase_53 AC 1,659 ms
50,224 KB
07_evil_01.txt AC 1,152 ms
67,252 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 + 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);
    }
    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