結果

問題 No.1640 簡単な色塗り
ユーザー nawawannawawan
提出日時 2021-08-06 22:54:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,570 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 219,364 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-29 15:57:06
合計ジャッジ時間 15,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 204 ms
11,008 KB
testcase_05 AC 203 ms
23,552 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 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 12 ms
5,376 KB
testcase_31 AC 92 ms
10,496 KB
testcase_32 AC 78 ms
9,472 KB
testcase_33 AC 49 ms
7,552 KB
testcase_34 AC 61 ms
8,576 KB
testcase_35 AC 50 ms
7,552 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 17 ms
5,376 KB
testcase_38 AC 82 ms
9,856 KB
testcase_39 AC 30 ms
6,144 KB
testcase_40 AC 32 ms
6,144 KB
testcase_41 AC 63 ms
8,832 KB
testcase_42 AC 36 ms
6,656 KB
testcase_43 AC 38 ms
6,656 KB
testcase_44 AC 37 ms
6,528 KB
testcase_45 AC 27 ms
5,888 KB
testcase_46 AC 14 ms
5,376 KB
testcase_47 AC 9 ms
5,376 KB
testcase_48 AC 82 ms
9,984 KB
testcase_49 AC 5 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 245 ms
21,504 KB
testcase_53 AC 232 ms
17,792 KB
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

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);
    }

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

    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);
    for(int i = 0; i < N; i++) {
        cin >> A[i] >> B[i];
        A[i]--;
        B[i]--;
        U.unite(A[i], B[i]);
        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, -1);
        vector<bool> use(N, false);
        used.assign(N, false);
        vector<bool> used_root(N, false);
        auto dfs = [&](auto dfs, int now) -> void{
            for(auto [to, ind] : G[now]){
                if(use[ind]) continue;
                if(used[to]){
                    ans[ind] = now;
                    use[ind] = true;
                    used[now] = true;
                    break;
                }
            }
            for(auto [to, ind] : G[now]){
                if(use[ind]) continue;
                if(used[to]) continue;
                if(!used[now]){
                    ans[ind] = now;
                    used[now] = true;
                    use[ind] = true;
                }
                dfs(dfs, to);
            }
        };
        for(int i = 0; i < N; i++){
            if(!used_root[U.root(i)]) {
                used_root[U.root(i)] = true;
                dfs(dfs, i);
            }
        }
        for(int i = 0; i < N; i++) cout << ans[i] + 1 << endl;
    }
}
0