結果

問題 No.1640 簡単な色塗り
ユーザー nawawannawawan
提出日時 2021-08-06 23:35:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 2,599 bytes
コンパイル時間 2,689 ms
コンパイル使用メモリ 220,688 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-06-29 16:25:54
合計ジャッジ時間 13,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 170 ms
9,772 KB
testcase_05 AC 178 ms
14,848 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 109 ms
8,064 KB
testcase_11 AC 91 ms
7,296 KB
testcase_12 AC 80 ms
6,912 KB
testcase_13 AC 180 ms
10,752 KB
testcase_14 AC 188 ms
10,624 KB
testcase_15 AC 67 ms
5,760 KB
testcase_16 AC 73 ms
6,400 KB
testcase_17 AC 141 ms
9,472 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 82 ms
6,784 KB
testcase_20 AC 108 ms
7,936 KB
testcase_21 AC 88 ms
7,296 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 115 ms
8,320 KB
testcase_24 AC 34 ms
5,376 KB
testcase_25 AC 83 ms
6,784 KB
testcase_26 AC 134 ms
8,832 KB
testcase_27 AC 56 ms
5,760 KB
testcase_28 AC 177 ms
10,368 KB
testcase_29 AC 142 ms
8,832 KB
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 71 ms
10,496 KB
testcase_32 AC 61 ms
9,472 KB
testcase_33 AC 41 ms
7,680 KB
testcase_34 AC 51 ms
8,576 KB
testcase_35 AC 41 ms
7,552 KB
testcase_36 AC 11 ms
5,376 KB
testcase_37 AC 15 ms
5,376 KB
testcase_38 AC 63 ms
9,856 KB
testcase_39 AC 27 ms
6,016 KB
testcase_40 AC 27 ms
6,272 KB
testcase_41 AC 51 ms
8,704 KB
testcase_42 AC 31 ms
6,656 KB
testcase_43 AC 31 ms
6,784 KB
testcase_44 AC 32 ms
6,528 KB
testcase_45 AC 24 ms
5,760 KB
testcase_46 AC 12 ms
5,376 KB
testcase_47 AC 8 ms
5,376 KB
testcase_48 AC 63 ms
9,984 KB
testcase_49 AC 4 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 212 ms
12,928 KB
testcase_53 AC 219 ms
12,928 KB
07_evil_01.txt AC 444 ms
19,968 KB
07_evil_02.txt AC 636 ms
28,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct UnionFind{
    vector<int> par;
    vector<int> rank;
    vector<int> cnt;
    UnionFind(int n){
        par.resize(n);
        rank.resize(n);
        cnt.resize(n, 0);
        for(int i = 0; i < n; i++){
            par[i] = i;
            rank[i] = 1;
        }
    }

    int root(int x){
        if(par[x] == x) return x;
        else return par[x] = root(par[x]);
    }

    bool same(int x, int y){
        return root(x) == root(y);
    }

    bool unite(int x, int y){
        x = root(x);
        y = root(y);
        if(x == y) {
            cnt[x] += 1;
            return false;
        }
        if(rank[x] < rank[y]) swap(x, y);
        par[y] = x;
        rank[x] += rank[y];
        cnt[x] += cnt[y] + 1;
        return true;
    }

    int size(int x) {
        return rank[root(x)];
    }
    int count(int x){
        return cnt[root(x)];
    }
};
int main(){
    int N;
    cin >> N;
    vector<int> A(N), B(N);
    UnionFind U(N);
    vector<vector<pair<int, int>>> G(N);
    vector<int> r, le, ri, ind;
    for(int i = 0; i < N; i++) {
        cin >> A[i] >> B[i];
        A[i]--;
        B[i]--;
        bool f = U.unite(A[i], B[i]);
        if(!f) {
            r.push_back(A[i]);
            le.push_back(A[i]);
            ri.push_back(B[i]);
            ind.push_back(i);
        }
        else{
            G[A[i]].push_back({B[i], i});
            G[B[i]].push_back({A[i], i});
        }
    }
    vector<bool> used(N, false);
    bool f = true;
    for(int i = 0; i < N; i++){
        int t = U.root(i);
        if(used[t]) continue;
        used[t] = true;
        if(U.size(i) != U.count(i)) f = false;
    }
    if(!f) cout << "No" << endl;
    else{
        cout << "Yes" << endl;
        vector<int> ans(N);
        for(int i = 0; i < N; i++) ans[i] = i;
        used.assign(N, false);
        auto dfs = [&](auto dfs, int now, int par) -> void{
            for(auto [to, id] : G[now]){
                if(to == par) continue;
                ans[id] = to;
                used[to] = true;
                dfs(dfs, to, now);
            }
        };
        for(int i = 0; i < (int)r.size(); i++){
            dfs(dfs, r[i], -1);
        }
        for(int i = 0; i < (int)le.size(); i++){
            if(!used[le[i]]) {
                ans[ind[i]] = le[i];
                used[le[i]] = true;
            }
            else if(!used[ri[i]]) {
                ans[ind[i]] = ri[i];
                used[ri[i]] = true;
            }
        }
        for(int i = 0; i < N; i++) cout << ans[i] + 1 << endl;
    }
}
0