結果

問題 No.1640 簡単な色塗り
ユーザー rogi52rogi52
提出日時 2022-10-22 04:20:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 211,352 KB
実行使用メモリ 10,700 KB
最終ジャッジ日時 2024-07-01 10:44:43
合計ジャッジ時間 13,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 77 ms
10,572 KB
testcase_05 AC 68 ms
10,572 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 56 ms
7,800 KB
testcase_11 AC 45 ms
7,000 KB
testcase_12 AC 39 ms
6,940 KB
testcase_13 AC 93 ms
10,148 KB
testcase_14 AC 89 ms
10,104 KB
testcase_15 AC 29 ms
6,944 KB
testcase_16 AC 35 ms
6,940 KB
testcase_17 AC 75 ms
9,040 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 39 ms
6,940 KB
testcase_20 AC 56 ms
7,684 KB
testcase_21 AC 44 ms
6,940 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 60 ms
8,092 KB
testcase_24 AC 16 ms
6,940 KB
testcase_25 AC 40 ms
6,944 KB
testcase_26 AC 70 ms
8,624 KB
testcase_27 AC 26 ms
6,944 KB
testcase_28 AC 86 ms
9,864 KB
testcase_29 AC 67 ms
8,588 KB
testcase_30 AC 11 ms
6,944 KB
testcase_31 AC 93 ms
10,424 KB
testcase_32 AC 75 ms
9,556 KB
testcase_33 AC 45 ms
7,472 KB
testcase_34 AC 62 ms
8,556 KB
testcase_35 AC 45 ms
7,584 KB
testcase_36 AC 11 ms
6,944 KB
testcase_37 AC 15 ms
6,944 KB
testcase_38 AC 77 ms
9,648 KB
testcase_39 AC 29 ms
6,940 KB
testcase_40 AC 29 ms
6,944 KB
testcase_41 AC 62 ms
8,796 KB
testcase_42 AC 33 ms
6,940 KB
testcase_43 AC 35 ms
6,940 KB
testcase_44 AC 34 ms
6,944 KB
testcase_45 AC 27 ms
6,940 KB
testcase_46 AC 13 ms
6,940 KB
testcase_47 AC 8 ms
6,940 KB
testcase_48 AC 87 ms
9,884 KB
testcase_49 AC 4 ms
6,944 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 97 ms
10,696 KB
testcase_53 AC 98 ms
10,700 KB
07_evil_01.txt AC 258 ms
19,000 KB
07_evil_02.txt AC 426 ms
27,008 KB
権限があれば一括ダウンロードができます

ソースコード

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<vector<pair<int,int>>> G(N);
    vector<int> deg(N, 0);
    rep(i,N) {
        int a,b; cin >> a >> b; a--; b--;
        G[a].push_back({b, i});
        G[b].push_back({a, i});
        deg[a]++, deg[b]++;
    }

    priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
    rep(i,N) pq.push({deg[i], i});
    vector<int> ans(N, -1), used(N, 0);
    while(!pq.empty()) {
        auto [d, v] = pq.top(); pq.pop();
        if(d == deg[v] && !used[v]) {
            for(auto [to, id] : G[v]) {
                if(ans[id] == -1) {
                    ans[id] = v;
                    used[v] = 1;
                    deg[v]--, deg[to]--;
                    pq.push({deg[v], v});
                    pq.push({deg[to], to});
                    break;
                }
            }
        }
    }

    rep(i,N) {
        if(used[i] == 0) {
            cout << "No" << endl;
            return 0;
        }
    }

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