結果

問題 No.1640 簡単な色塗り
ユーザー rogi52rogi52
提出日時 2022-10-22 04:03:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,496 bytes
コンパイル時間 2,872 ms
コンパイル使用メモリ 220,248 KB
実行使用メモリ 23,136 KB
最終ジャッジ日時 2024-07-01 10:37:07
合計ジャッジ時間 16,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 105 ms
23,136 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 15 ms
6,940 KB
testcase_31 AC 163 ms
21,376 KB
testcase_32 AC 115 ms
18,688 KB
testcase_33 AC 63 ms
13,440 KB
testcase_34 AC 105 ms
17,024 KB
testcase_35 AC 65 ms
14,336 KB
testcase_36 AC 14 ms
6,944 KB
testcase_37 AC 20 ms
7,040 KB
testcase_38 AC 122 ms
19,328 KB
testcase_39 AC 49 ms
10,368 KB
testcase_40 AC 40 ms
9,856 KB
testcase_41 AC 78 ms
15,360 KB
testcase_42 AC 46 ms
10,880 KB
testcase_43 AC 59 ms
11,904 KB
testcase_44 AC 45 ms
11,136 KB
testcase_45 AC 34 ms
9,856 KB
testcase_46 AC 16 ms
6,944 KB
testcase_47 AC 10 ms
6,944 KB
testcase_48 AC 122 ms
20,552 KB
testcase_49 AC 6 ms
6,940 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 272 ms
22,784 KB
testcase_53 AC 269 ms
22,912 KB
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using ld = long double;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<int> A(N), B(N);
    rep(i,N) cin >> A[i] >> B[i], A[i]--, B[i]--;

    vector<vector<int>> G(N);
    vector<int> deg(N, 0);
    rep(i,N) {
        G[A[i]].push_back(B[i]);
        G[B[i]].push_back(A[i]);
        deg[A[i]]++, deg[B[i]]++;
    }
    queue<int> q;
    vector<int> used(N, 0);
    rep(i,N) if(deg[i] == 1) {
        q.push(i);
        deg[i] -= 1;
        used[i] = 1;
    }
    map<pair<int,int>,int> ans;
    while(!q.empty()) {
        int v = q.front(); q.pop();
        for(int to : G[v]) {
            if(!used[to]) {
                ans[{v, to}] = ans[{to, v}] = v;
                if(--deg[to] == 1) {
                    q.push(to);
                    used[to] = 1;
                }
            }
        }
    }

    rep(i,N) if(!used[i]) {
        vector<int> vs;
        function<void(int)> dfs = [&](int v) -> void {
            vs.push_back(v);
            used[v] = 1;
            for(int to : G[v]) if(!used[to]) dfs(to);
        }; dfs(i);

        if(vs.size() == 1u) { cout << "No" << endl; return 0; }
        rep(k,vs.size()) ans[{vs[k], vs[(k + 1) % (int)vs.size()]}] = vs[k];
    }

    cout << "Yes" << endl;
    rep(i,N) {
        cout << ans[{A[i], B[i]}] + 1 << "\n";
        ans[{A[i], B[i]}] ^= (A[i] ^ B[i]);
    }
}
0