結果
問題 | No.1266 7 Colors |
ユーザー | iqueue02 |
提出日時 | 2020-10-24 15:23:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 327 ms / 3,000 ms |
コード長 | 1,845 bytes |
コンパイル時間 | 2,667 ms |
コンパイル使用メモリ | 209,284 KB |
実行使用メモリ | 14,960 KB |
最終ジャッジ日時 | 2024-07-21 15:17:36 |
合計ジャッジ時間 | 9,092 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 249 ms
6,944 KB |
testcase_04 | AC | 305 ms
11,392 KB |
testcase_05 | AC | 250 ms
6,940 KB |
testcase_06 | AC | 317 ms
12,160 KB |
testcase_07 | AC | 322 ms
13,440 KB |
testcase_08 | AC | 314 ms
11,520 KB |
testcase_09 | AC | 292 ms
9,728 KB |
testcase_10 | AC | 285 ms
9,088 KB |
testcase_11 | AC | 261 ms
6,940 KB |
testcase_12 | AC | 272 ms
7,680 KB |
testcase_13 | AC | 276 ms
8,320 KB |
testcase_14 | AC | 256 ms
6,940 KB |
testcase_15 | AC | 327 ms
13,528 KB |
testcase_16 | AC | 265 ms
7,936 KB |
testcase_17 | AC | 324 ms
13,056 KB |
testcase_18 | AC | 287 ms
14,960 KB |
testcase_19 | AC | 176 ms
14,500 KB |
testcase_20 | AC | 175 ms
14,620 KB |
testcase_21 | AC | 228 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n); i++) typedef long long ll; typedef long double ld; typedef pair<int,int> P; struct UnionFind{ vector<int> data; int __size; UnionFind(int sz) { data.assign(sz, -1); __size = sz; } bool unite(int x, int y) { x = find(x), y = find(y); if(x == y) return (false); if(data[x] > data[y]) swap(x, y);//親は負でサイズを保存 __size--; data[x] += data[y]; data[y] = x; return (true); } int find(int k) { if(data[k] < 0) return (k); return (data[k] = find(data[k])); } bool same(int x, int y){ return find(x) == find(y); } int size(int k) { return (-data[find(k)]); } int union_count() { return (__size); } }; int main() { int n, m, q; cin >> n >> m >> q; vector<string> s(n); vector<vector<int>> g(n); rep(i,n) cin >> s[i]; rep(i,m) { int u, v; cin >> u >> v; u--; v--; g[u].emplace_back(v); g[v].emplace_back(u); } UnionFind uf(n * 7); for (int i = 0; i < n; i++) { for (int j = 0; j < 7; j++) { if (s[i][j] == '0') continue; for (auto k : g[i]) if (s[k][j] == '1') uf.unite(i * 7 + j, k * 7 + j); int a = (j + 1) % 7, b = (j - 1 + 7) % 7; if (s[i][a] == '1') uf.unite(i * 7 + j, i * 7 + a); if (s[i][b] == '1') uf.unite(i * 7 + j, i * 7 + b); } } while (q--) { int t, u, x; cin >> t >> u >> x; u--; x--; if (t == 1) { s[u][x] = '1'; for (auto v : g[u]) if (s[v][x] == '1') uf.unite(u * 7 + x, v * 7 + x); int a = (x + 1) % 7, b = (x - 1 + 7) % 7; if (s[u][a] == '1') uf.unite(u * 7 + x, u * 7 + a); if (s[u][b] == '1') uf.unite(u * 7 + x, u * 7 + b); } else { cout << uf.size(u * 7) << endl; } } return 0; }