結果

問題 No.1266 7 Colors
ユーザー stoqstoq
提出日時 2020-10-22 13:56:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 3,000 ms
コード長 1,766 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 208,836 KB
実行使用メモリ 17,716 KB
最終ジャッジ日時 2024-07-21 09:16:36
合計ジャッジ時間 9,277 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 210 ms
6,144 KB
testcase_04 AC 239 ms
13,312 KB
testcase_05 AC 208 ms
6,784 KB
testcase_06 AC 243 ms
14,208 KB
testcase_07 AC 262 ms
15,872 KB
testcase_08 AC 291 ms
13,312 KB
testcase_09 AC 234 ms
11,136 KB
testcase_10 AC 238 ms
10,240 KB
testcase_11 AC 215 ms
7,680 KB
testcase_12 AC 228 ms
8,448 KB
testcase_13 AC 226 ms
9,216 KB
testcase_14 AC 213 ms
6,656 KB
testcase_15 AC 265 ms
16,128 KB
testcase_16 AC 219 ms
8,704 KB
testcase_17 AC 258 ms
15,488 KB
testcase_18 AC 265 ms
17,716 KB
testcase_19 AC 155 ms
17,280 KB
testcase_20 AC 157 ms
17,408 KB
testcase_21 AC 199 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < int(n); ++i)

struct UnionFind
{
  vector<int> par, sizes;

  UnionFind(int n) : par(n), sizes(n, 1)
  {
    iota(begin(par), end(par), 0);
  }

  int root(int x)
  {
    if (x == par[x])
      return x;
    return par[x] = root(par[x]);
  }

  void unite(int x, int y)
  {
    x = root(x);
    y = root(y);
    if (x == y)
      return;
    if (sizes[x] < sizes[y])
      swap(x, y);
    par[y] = x;
    sizes[x] += sizes[y];
  }

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

  int size(int x) { return sizes[root(x)]; }
};

int main()
{
  int n, m, q;
  cin >> n >> m >> q;
  vector<string> s(n);
  rep(i, n) cin >> s[i];
  vector<vector<int>> G(n);
  rep(i, m)
  {
    int a, b;
    cin >> a >> b;
    a--, b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  UnionFind uf(n * 7);
  rep(i, n) rep(j, 7)
  {
    if (s[i][j] == '0')
      continue;
    for (auto to : G[i])
    {
      if (s[to][j] == '1')
        uf.unite(i * 7 + j, to * 7 + j);
    }
    int up = (j + 1) % 7, down = (j - 1 + 7) % 7;
    if (s[i][up] == '1')
      uf.unite(i * 7 + j, i * 7 + up);
    if (s[i][down] == '1')
      uf.unite(i * 7 + j, i * 7 + down);
  }

  rep(qi, q)
  {
    int type, x, y;
    cin >> type >> x >> y;
    x--, y--;
    if (type == 1)
    {
      s[x][y] = '1';
      for (auto to : G[x])
      {
        if (s[to][y] == '1')
          uf.unite(x * 7 + y, to * 7 + y);
      }
      int up = (y + 1) % 7, down = (y - 1 + 7) % 7;
      if (s[x][up] == '1')
        uf.unite(x * 7 + y, x * 7 + up);
      if (s[x][down] == '1')
        uf.unite(x * 7 + y, x * 7 + down);
    }
    else
    {
      cout << uf.size(x * 7) << "\n";
    }
  }
}
0