結果

問題 No.1266 7 Colors
ユーザー hanyuhanyu
提出日時 2020-10-25 00:09:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 3,000 ms
コード長 1,843 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 209,832 KB
実行使用メモリ 14,920 KB
最終ジャッジ日時 2024-07-21 16:17:53
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 74 ms
5,888 KB
testcase_04 AC 112 ms
11,264 KB
testcase_05 AC 81 ms
6,400 KB
testcase_06 AC 120 ms
12,160 KB
testcase_07 AC 129 ms
13,440 KB
testcase_08 AC 115 ms
11,520 KB
testcase_09 AC 105 ms
9,600 KB
testcase_10 AC 96 ms
9,088 KB
testcase_11 AC 86 ms
6,940 KB
testcase_12 AC 90 ms
7,680 KB
testcase_13 AC 95 ms
8,320 KB
testcase_14 AC 79 ms
6,400 KB
testcase_15 AC 115 ms
13,568 KB
testcase_16 AC 90 ms
7,808 KB
testcase_17 AC 113 ms
12,928 KB
testcase_18 AC 70 ms
14,920 KB
testcase_19 AC 69 ms
14,720 KB
testcase_20 AC 68 ms
14,464 KB
testcase_21 AC 41 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

// Union-Find Tree
struct UnionFind {
  vector<int> par; // 親のid(親の場合, 集合の頂点数の-1倍)
  
  UnionFind(int n): par(n, -1) {}
  
  void init(int n) {
    par.assign(n, -1);
  }
  
  int find(int x) {
    if (par[x] < 0) return x;
    return par[x] = find(par[x]);
  }
  
  bool unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return false;
    if (par[x] > par[y]) swap(x, y);
    par[x] += par[y];
    par[y] = x;
    return true;
  }
  
  bool same(int x, int y) {
    return find(x) == find(y);
  }
  
  int size(int x) {
    return -par[find(x)];
  }
};

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  
  int n, m, q;
  cin >> n >> m >> q;
  
  vector<string> s(n);
  for (int i = 0; i < n; i++) cin >> s[i];
  
  vector<vector<int>> G(n);
  for (int i = 0; i < m; i++) {
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    G[u].emplace_back(v);
    G[v].emplace_back(u);
  }
  
  UnionFind uf(7 * n);
  
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < 7; j++) {
      if (s[i][j] == '1' && s[i][(j + 1) % 7] == '1') uf.unite(i + n * j, i + (n * (j + 1)) % (7 * n));
    }
  }
  
  for (int i = 0; i < n; i++) {
    for (int j : G[i]) {
      for (int k = 0; k < 7; k++) {
        if (s[i][k] == '1' && s[j][k] == '1') uf.unite(i + n * k, j + n * k);
      }
    }
  }
  
  while (q--) {
    int tmp, x, y;
    cin >> tmp >> x >> y;
    x--;
    y--;
    if (tmp == 1) {
      s[x][y] = '1';
      if (s[x][(y - 1 + 7) % 7] == '1') uf.unite(x + n * y, x + (n * ((y - 1 + 7) % 7)));
      if (s[x][(y + 1) % 7] == '1') uf.unite(x + n * y, x + (n * ((y + 1) % 7)));
      for (auto j : G[x]) {
        if (s[j][y] == '1') uf.unite(x + n * y, j + n * y);
      }
    }
    else {
      cout << uf.size(x) << '\n';
    }
  }
}
0