結果

問題 No.1640 簡単な色塗り
ユーザー hayatenhayaten
提出日時 2021-08-10 12:12:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,357 ms / 2,000 ms
コード長 2,507 bytes
コンパイル時間 2,908 ms
コンパイル使用メモリ 226,828 KB
実行使用メモリ 17,156 KB
最終ジャッジ日時 2024-06-29 17:04:53
合計ジャッジ時間 18,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,940 KB
testcase_04 AC 1,357 ms
13,528 KB
testcase_05 AC 205 ms
17,156 KB
testcase_06 AC 2 ms
6,944 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 137 ms
9,844 KB
testcase_11 AC 110 ms
8,628 KB
testcase_12 AC 98 ms
8,056 KB
testcase_13 AC 217 ms
13,404 KB
testcase_14 AC 212 ms
13,460 KB
testcase_15 AC 70 ms
6,940 KB
testcase_16 AC 85 ms
7,556 KB
testcase_17 AC 171 ms
11,676 KB
testcase_18 AC 16 ms
6,940 KB
testcase_19 AC 95 ms
8,148 KB
testcase_20 AC 128 ms
9,656 KB
testcase_21 AC 108 ms
8,592 KB
testcase_22 AC 12 ms
6,944 KB
testcase_23 AC 142 ms
10,364 KB
testcase_24 AC 39 ms
6,940 KB
testcase_25 AC 99 ms
8,096 KB
testcase_26 AC 157 ms
10,876 KB
testcase_27 AC 66 ms
6,944 KB
testcase_28 AC 201 ms
13,056 KB
testcase_29 AC 154 ms
10,940 KB
testcase_30 AC 12 ms
6,940 KB
testcase_31 AC 88 ms
10,036 KB
testcase_32 AC 76 ms
9,216 KB
testcase_33 AC 50 ms
7,296 KB
testcase_34 AC 62 ms
8,448 KB
testcase_35 AC 53 ms
7,424 KB
testcase_36 AC 13 ms
6,944 KB
testcase_37 AC 17 ms
6,940 KB
testcase_38 AC 80 ms
9,600 KB
testcase_39 AC 31 ms
6,940 KB
testcase_40 AC 33 ms
6,944 KB
testcase_41 AC 63 ms
8,448 KB
testcase_42 AC 36 ms
6,940 KB
testcase_43 AC 37 ms
6,940 KB
testcase_44 AC 37 ms
6,944 KB
testcase_45 AC 27 ms
6,944 KB
testcase_46 AC 14 ms
6,940 KB
testcase_47 AC 9 ms
6,940 KB
testcase_48 AC 80 ms
9,600 KB
testcase_49 AC 5 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 247 ms
16,520 KB
testcase_53 AC 240 ms
15,640 KB
07_evil_01.txt AC 509 ms
26,200 KB
07_evil_02.txt AC 811 ms
36,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/dsu>
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rrep(i, n) for (int i = (n - 1); i >= 0; i--)
#define ALL(v) v.begin(), v.end()
#define pb push_back
using namespace std;
using namespace atcoder;

using P = pair<int, int>;
using Graph = vector<vector<P>>;
typedef long long ll;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, 1, 0, -1};
Graph G;
bool non_tree[400000];


int main() {
  int n;
  cin >> n;
  dsu d(n);
  vector<P> self_loop(n);
  vector<int> edge_enable(n);
  G.resize(n);
  rep(i, n){
    int a, b;
    cin >> a >> b;
    a--, b--;
    if(a == b){
      self_loop[a].first = 1;
      self_loop[a].second = i;
      non_tree[d.leader(a)] = true;
      edge_enable[i] = 1;
      continue;
    }
    G[a].pb({b, i});
    G[b].pb({a, i});
    if(d.same(a, b)){
      non_tree[d.leader(a)] = true;
    }
    if(non_tree[d.leader(a)] | non_tree[d.leader(b)]){
      d.merge(a, b);
      non_tree[d.leader(a)] = true;
    }
    d.merge(a, b);
  }
  rep(i, n){
    if(d.leader(i) != i)continue;
    if(!non_tree[i]){
      cout << "No" << endl;
      return 0;
    }
  }
  cout << "Yes" << endl;
  vector<vector<int>> lis = d.groups();
  vector<int> used(n);
  vector<int> ans(n, -1);
  auto root_v = [&](auto &&self, int u, int p, int e, int &start) -> void{
    if(used[u] == 1){
      start = u;
      edge_enable[e] = 1;
      ans[e] = u;
      return;
    }
    used[u] = 1;
    for(auto [v, b] : G[u]){
      if(v ==p)continue;
      self(self, v, u, b, start);
    }
    return;
  };
  auto dfs = [&](auto &&self, int u, int p, int e, vector<int>& res) -> void{
    used[u] = 1;
    if(e != -1 && res[e] == -1){
      res[e] = u;
    }
    for(auto [v, b] : G[u]){
      if(v ==p)continue;
      if(used[v])continue;
      if(edge_enable[b] == 1)continue;
      self(self, v, u, b, res);
    }
    return;
  };
  for(auto s : lis){
    int root = -1;
    for (auto d : s){
      if(self_loop[d].first == 1){
        root = d;
        ans[self_loop[d].second] = d;
      }
    }
    int root_tmp = -1;
    for (auto d : s){
      root_tmp = d;
      break;
    }
    if(root == -1){
      root_v(root_v, root_tmp, -1, -1, root);
    }
    used.assign(n, 0);
    dfs(dfs, root, -1, -1, ans);
  }
  rep(i, n){
    cout << ans[i] + 1 << endl;
  }
}
0