結果

問題 No.1640 簡単な色塗り
ユーザー だれだれ
提出日時 2021-08-06 22:51:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,184 bytes
コンパイル時間 3,677 ms
コンパイル使用メモリ 192,080 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-29 15:53:32
合計ジャッジ時間 13,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 82 ms
9,856 KB
testcase_05 AC 87 ms
16,256 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
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 13 ms
5,376 KB
testcase_31 AC 95 ms
11,904 KB
testcase_32 AC 89 ms
11,392 KB
testcase_33 AC 53 ms
9,088 KB
testcase_34 AC 69 ms
11,520 KB
testcase_35 AC 54 ms
9,600 KB
testcase_36 AC 13 ms
5,376 KB
testcase_37 AC 18 ms
5,632 KB
testcase_38 AC 92 ms
11,264 KB
testcase_39 AC 34 ms
6,912 KB
testcase_40 AC 35 ms
6,784 KB
testcase_41 AC 71 ms
10,240 KB
testcase_42 AC 39 ms
7,040 KB
testcase_43 AC 42 ms
7,552 KB
testcase_44 AC 40 ms
7,808 KB
testcase_45 AC 30 ms
6,912 KB
testcase_46 AC 15 ms
5,376 KB
testcase_47 AC 9 ms
5,376 KB
testcase_48 AC 92 ms
13,056 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 120 ms
12,288 KB
testcase_53 AC 115 ms
13,312 KB
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <unordered_set>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define GET_MACRO(_1, _2, _3, NAME, ...) NAME
#define _rep(i, n) _rep2(i, 0, n)
#define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++)
#define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using i64 = long long;
template<class T, class U>
bool chmin(T& a, const U& b) { return (b < a) ? (a = b, true) : false; }
template<class T, class U>
bool chmax(T& a, const U& b) { return (b > a) ? (a = b, true) : false; }

template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;}
template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);}
template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;}
template<typename T>string join(vector<vector<T>>&vv){string s="\n";rep(i,vv.size())s+=join(vv[i])+"\n";return s;}
template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;}

vector<vector<pair<int, int>>> edge;
vector<int> visited;

bool dfs(int now, int p){
    bool res = false;
    bool f = 0;
    for (auto [e, _]: edge[now]){
        if (e == p){
            if (f){
                res = true;
                break;
            }
            f = 1;
            continue;
        }
        if (visited[e]){
            res = true;
            break;
        }
        visited[e] = 1;
        res |= dfs(e, now);
    }
    return res;
}

int main(){
    int n;
    cin >> n;
    edge.resize(n);
    visited.resize(n, 0);
    vector<int> cnt(n);
    rep(i, n){
        int a, b;
        cin >> a >> b;
        a--, b--;
        edge[a].emplace_back(b, i);
        edge[b].emplace_back(a, i);
        cnt[a]++;
        cnt[b]++;
    }
    rep(i, n){
        if (!visited[i]){
            visited[i] = 1;
            if (!dfs(i, -1)){
                cout << "No" << endl;
                return 0;
            }
        }
    }
    vector<int> ans(n, -1);
    queue<int> que;
    rep(i, n){
        if (cnt[i] == 1){
            que.emplace(i);
        }
    }
    cout << "Yes" << endl;
    while (!que.empty()){
        auto now = que.front();
        que.pop();
        for (auto [e, i]: edge[now]){
            cnt[e]--;
            if (ans[i] == -1){
                ans[i] = now;
            }
            if (cnt[e] == 1){
                que.emplace(e);
            }
        }
    }
    rep(i, n){
        if (cnt[i] > 1){
            for (auto [e, j]: edge[i]){
                if (ans[j] == -1){
                    ans[j] = i;
                    break;
                }
            }
        }
    }
    rep(i, n) ans[i]++;
    for (auto i: ans) cout << i << "\n";
}
0