結果

問題 No.1640 簡単な色塗り
ユーザー simansiman
提出日時 2023-02-08 18:26:12
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,008 bytes
コンパイル時間 13,384 ms
コンパイル使用メモリ 110,620 KB
実行使用メモリ 13,212 KB
最終ジャッジ日時 2023-09-20 09:30:41
合計ジャッジ時間 21,760 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,680 KB
testcase_01 AC 6 ms
5,728 KB
testcase_02 AC 5 ms
5,784 KB
testcase_03 AC 5 ms
5,756 KB
testcase_04 AC 744 ms
13,080 KB
testcase_05 AC 206 ms
13,100 KB
testcase_06 AC 6 ms
5,792 KB
testcase_07 AC 5 ms
5,728 KB
testcase_08 AC 5 ms
5,732 KB
testcase_09 AC 5 ms
5,780 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 17 ms
6,472 KB
testcase_31 AC 160 ms
13,004 KB
testcase_32 AC 108 ms
11,952 KB
testcase_33 AC 74 ms
9,952 KB
testcase_34 AC 83 ms
11,100 KB
testcase_35 AC 65 ms
9,952 KB
testcase_36 AC 18 ms
6,580 KB
testcase_37 AC 23 ms
7,352 KB
testcase_38 AC 110 ms
12,376 KB
testcase_39 AC 45 ms
8,584 KB
testcase_40 AC 42 ms
8,848 KB
testcase_41 AC 91 ms
11,248 KB
testcase_42 AC 56 ms
9,164 KB
testcase_43 AC 63 ms
9,112 KB
testcase_44 AC 49 ms
9,160 KB
testcase_45 AC 39 ms
8,424 KB
testcase_46 AC 19 ms
7,048 KB
testcase_47 AC 14 ms
6,288 KB
testcase_48 AC 105 ms
12,492 KB
testcase_49 AC 9 ms
6,020 KB
testcase_50 AC 6 ms
5,736 KB
testcase_51 AC 6 ms
5,728 KB
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt RE -
権限があれば一括ダウンロードができます

ソースコード

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(MAX_N);

  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]++;
  }

  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<int> stk;
    stk.push(v);
    int root = -1;
    int last_eid = -1;

    while (not stk.empty() && root == -1) {
      int u = stk.top();
      stk.pop();

      visited[u] = true;

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

        stk.push(e.to);
      }
    }

    assert(last_eid != -1);
    stack<int> new_stk;
    memset(visited, false, sizeof(visited));
    stk = new_stk;
    stk.push(root);
    while (not stk.empty()) {
      int u = stk.top();
      stk.pop();

      if (visited[u]) continue;
      visited[u] = true;
      checked[u] = true;

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

        ans[e.id] = e.to;
        stk.push(e.to);
      }
    }

    Edge &le = edges[last_eid];
    ans[last_eid] = root;
  }

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

  return 0;
}

0