結果

問題 No.1640 簡単な色塗り
ユーザー simansiman
提出日時 2023-02-08 18:58:20
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 745 ms / 2,000 ms
コード長 3,351 bytes
コンパイル時間 11,849 ms
コンパイル使用メモリ 107,828 KB
実行使用メモリ 11,988 KB
最終ジャッジ日時 2023-09-20 09:50:50
合計ジャッジ時間 17,553 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,356 KB
testcase_01 AC 2 ms
4,356 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,352 KB
testcase_04 AC 745 ms
11,920 KB
testcase_05 AC 209 ms
11,988 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 144 ms
8,836 KB
testcase_11 AC 118 ms
7,772 KB
testcase_12 AC 104 ms
7,448 KB
testcase_13 AC 232 ms
11,796 KB
testcase_14 AC 232 ms
11,820 KB
testcase_15 AC 75 ms
6,108 KB
testcase_16 AC 91 ms
6,908 KB
testcase_17 AC 189 ms
10,428 KB
testcase_18 AC 16 ms
4,376 KB
testcase_19 AC 103 ms
7,340 KB
testcase_20 AC 140 ms
8,756 KB
testcase_21 AC 113 ms
7,764 KB
testcase_22 AC 11 ms
4,376 KB
testcase_23 AC 149 ms
9,164 KB
testcase_24 AC 40 ms
4,916 KB
testcase_25 AC 106 ms
7,368 KB
testcase_26 AC 166 ms
9,708 KB
testcase_27 AC 69 ms
6,048 KB
testcase_28 AC 218 ms
11,336 KB
testcase_29 AC 169 ms
9,596 KB
testcase_30 AC 15 ms
4,568 KB
testcase_31 AC 133 ms
11,712 KB
testcase_32 AC 110 ms
10,588 KB
testcase_33 AC 66 ms
8,216 KB
testcase_34 AC 85 ms
9,600 KB
testcase_35 AC 69 ms
8,156 KB
testcase_36 AC 14 ms
4,608 KB
testcase_37 AC 20 ms
5,088 KB
testcase_38 AC 113 ms
11,048 KB
testcase_39 AC 41 ms
6,388 KB
testcase_40 AC 45 ms
6,592 KB
testcase_41 AC 103 ms
9,664 KB
testcase_42 AC 53 ms
6,992 KB
testcase_43 AC 55 ms
7,064 KB
testcase_44 AC 53 ms
7,052 KB
testcase_45 AC 37 ms
6,260 KB
testcase_46 AC 17 ms
4,804 KB
testcase_47 AC 10 ms
4,388 KB
testcase_48 AC 116 ms
11,264 KB
testcase_49 AC 5 ms
4,380 KB
testcase_50 AC 2 ms
4,376 KB
testcase_51 AC 2 ms
4,376 KB
testcase_52 AC 269 ms
11,884 KB
testcase_53 AC 270 ms
11,936 KB
07_evil_01.txt AC 579 ms
22,728 KB
07_evil_02.txt AC 905 ms
33,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <stack>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_N = 200000;
vector<int> parent;
vector<int> _rank;
vector<int> _size;

class UnionFind {
public:
  UnionFind(int n) {
    for (int i = 0; i < n; ++i) {
      parent.push_back(i);
      _rank.push_back(0);
      _size.push_back(1);
    }
  }

  int find(int x) {
    if (parent[x] == x) {
      return x;
    } else {
      return parent[x] = find(parent[x]);
    }
  }

  void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return;

    if (_rank[x] < _rank[y]) {
      parent[x] = y;
      _size[y] += _size[x];
    } else {
      parent[y] = x;
      _size[x] += _size[y];
      if (_rank[x] == _rank[y]) ++_rank[x];
    }
  }

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

  int size(int x) {
    return _size[find(x)];
  }
};

struct Edge {
  int id;
  int from;
  int to;

  Edge(int id = -1, int from = -1, int to = -1) {
    this->id = id;
    this->from = from;
    this->to = to;
  }
};

int main() {
  int N;

  cin >> N;
  UnionFind uf(N + 1);

  vector<Edge> E[N + 1];
  vector<Edge> edges;
  int a, b;
  for (int i = 0; i < N; ++i) {
    cin >> a >> b;
    uf.unite(a, b);

    E[a].push_back(Edge(i, a, b));
    E[b].push_back(Edge(i, b, a));
    edges.push_back(Edge(i, a, b));
  }

  int counter[N + 1];
  memset(counter, 0, sizeof(counter));

  for (Edge &e : edges) {
    int x = uf.find(e.from);

    counter[x]++;
  }

  typedef pair<int, int> P;
  int ans[N];
  memset(ans, -1, sizeof(ans));
  bool checked[N + 1];
  memset(checked, false, sizeof(checked));
  for (int v = 1; v <= N; ++v) {
    if (checked[v]) continue;

    int e_cnt = counter[uf.find(v)];
    if (e_cnt < uf.size(v)) {
      cout << "No" << endl;
      return 0;
    }

    bool visited[N + 1];
    memset(visited, false, sizeof(visited));
    stack<P> stk;
    stk.push(P(v, -1));
    int root = -1;
    int last_eid = -1;

    while (not stk.empty() && root == -1) {
      P p = stk.top();
      int u = p.first;
      int parent = p.second;
      stk.pop();

      visited[u] = true;

      for (Edge &e : E[u]) {
        if (e.id == parent) continue;
        if (visited[e.to] && root == -1) {
          root = e.to;
          last_eid = e.id;
        }

        stk.push(P(e.to, e.id));
      }
    }

    // fprintf(stderr, "v: %d, root: %d\n", v, root);
    stack<P> new_stk;
    memset(visited, false, sizeof(visited));
    new_stk.push(P(root, -1));
    while (not new_stk.empty()) {
      P p = new_stk.top();
      int u = p.first;
      int parent = p.second;
      new_stk.pop();

      if (visited[u]) continue;
      visited[u] = true;
      checked[u] = true;
      // fprintf(stderr, "  check: %d, es: %d\n", u, (int) E[u].size());

      for (Edge &e : E[u]) {
        if (e.id == parent) continue;
        if (e.id == last_eid) continue;

        // fprintf(stderr, "    id: %d, v: %d, ans: %d\n", e.id, e.to, ans[e.id]);
        ans[e.id] = e.to;
        new_stk.push(P(e.to, e.id));
      }
    }

    ans[last_eid] = root;
  }

  cout << "Yes" << endl;
  for (int i = 0; i < N; ++i) {
    cout << ans[i] << endl;
  }

  return 0;
}

0