結果

問題 No.1640 簡単な色塗り
ユーザー rogi52rogi52
提出日時 2022-10-22 04:06:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,717 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 221,360 KB
実行使用メモリ 35,508 KB
最終ジャッジ日時 2024-07-01 10:38:27
合計ジャッジ時間 19,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
6,944 KB
testcase_04 AC 181 ms
22,784 KB
testcase_05 AC 169 ms
35,508 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 115 ms
15,232 KB
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 27 ms
7,552 KB
testcase_31 AC 304 ms
33,664 KB
testcase_32 AC 234 ms
29,304 KB
testcase_33 AC 131 ms
20,736 KB
testcase_34 AC 192 ms
26,112 KB
testcase_35 AC 131 ms
21,504 KB
testcase_36 AC 27 ms
7,680 KB
testcase_37 AC 40 ms
9,600 KB
testcase_38 AC 263 ms
30,336 KB
testcase_39 AC 84 ms
15,104 KB
testcase_40 AC 75 ms
14,720 KB
testcase_41 AC 171 ms
24,576 KB
testcase_42 AC 97 ms
16,384 KB
testcase_43 AC 106 ms
17,920 KB
testcase_44 AC 95 ms
16,896 KB
testcase_45 AC 66 ms
14,080 KB
testcase_46 AC 28 ms
8,320 KB
testcase_47 AC 19 ms
6,940 KB
testcase_48 AC 237 ms
31,856 KB
testcase_49 AC 9 ms
6,940 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 412 ms
35,328 KB
testcase_53 AC 409 ms
35,328 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);
    map<pair<int,int>,int> exist;
    rep(i,N) cin >> A[i] >> B[i], A[i]--, B[i]--, exist[{A[i], B[i]}] = exist[{B[i], A[i]}] = 1;

    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) {
            if(exist[{i, i}]) {
                ans[{i, i}] = i;
            } else {
                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