結果

問題 No.1266 7 Colors
ユーザー kk
提出日時 2020-10-30 19:20:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 258 ms / 3,000 ms
コード長 2,112 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 209,228 KB
実行使用メモリ 20,564 KB
最終ジャッジ日時 2024-07-21 22:59:48
合計ジャッジ時間 7,965 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 170 ms
6,528 KB
testcase_04 AC 233 ms
15,104 KB
testcase_05 AC 175 ms
7,168 KB
testcase_06 AC 242 ms
16,384 KB
testcase_07 AC 248 ms
18,304 KB
testcase_08 AC 239 ms
15,232 KB
testcase_09 AC 213 ms
12,672 KB
testcase_10 AC 204 ms
11,520 KB
testcase_11 AC 186 ms
8,448 KB
testcase_12 AC 187 ms
9,344 KB
testcase_13 AC 190 ms
10,368 KB
testcase_14 AC 168 ms
7,168 KB
testcase_15 AC 258 ms
18,688 KB
testcase_16 AC 183 ms
9,600 KB
testcase_17 AC 250 ms
17,792 KB
testcase_18 AC 199 ms
20,564 KB
testcase_19 AC 79 ms
20,096 KB
testcase_20 AC 79 ms
20,096 KB
testcase_21 AC 165 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

class UFT {
  int n;
  int cnt;           // number of connected components
  vector<int> par;
  vector<int> rank;
  vector<int> sz;    // size of each component
public:
  UFT(int n) : n(n), cnt(n), par(n), rank(n), sz(n) {
    for (int i = 0; i < n; i++) {
      par[i] = i;
      sz[i] = 1;
    }
  }
  
  int find(int x) {
    return par[x] == x ? x : par[x] = find(par[x]);
  }
  
  void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return;
    
    --cnt;
    if (rank[x] < rank[y]) {
      par[x] = y;
      sz[y] += sz[x];
    } else {
      par[y] = x;
      sz[x] += sz[y];
      if (rank[x] == rank[y])
        ++rank[x];
    }
    
  }
  
  bool same(int x, int y) {
    return find(x) == find(y);
  }
  
  int compCnt() {
    return cnt;
  }
  
  int size(int x) {
    return sz[find(x)];
  }
};

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n, m, q;
  cin >> n >> m >> q;

  UFT tree(7 * n);
  vector<string> color(n);

  REP (i, n) {
    cin >> color[i];
    REP (j, 7) {
      int k = (j + 1) % 7;
      if (color[i][j] == '1' && color[i][k] == '1') {
        tree.unite(7*i+j, 7*i+k);
      }
    }
  }

  vector<vector<int> > edges(n);
  REP (i, m) {
    int u, v;
    cin >> u >> v;
    --u, --v;
    edges[u].push_back(v);
    edges[v].push_back(u);
    REP (j, 7) {
      if (color[u][j] == '1' && color[v][j] == '1') {
        tree.unite(7*u+j, 7*v+j);
      }
    }
  }
  
  REP (_, q) {
    int t, x, y;
    cin >> t >> x >> y;
    --x, --y;
    if (t == 1) {
      color[x][y] = '1';
      if (color[x][(y+1)%7] == '1')
        tree.unite(7*x+y, 7*x+(y+1)%7);
      if (color[x][(y+6)%7] == '1')
        tree.unite(7*x+y, 7*x+(y+6)%7);
      for (int v: edges[x]) {
        if (color[v][y] == '1')
          tree.unite(7*x+y, 7*v+y);
      }
    } else {
      cout << tree.size(7*x) << endl;
    }
  }
  
  return 0;
}
0