結果
問題 | No.1266 7 Colors |
ユーザー | marroncastle |
提出日時 | 2020-10-24 00:27:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,696 bytes |
コンパイル時間 | 1,585 ms |
コンパイル使用メモリ | 166,404 KB |
実行使用メモリ | 14,820 KB |
最終ジャッジ日時 | 2024-07-21 14:16:23 |
合計ジャッジ時間 | 8,082 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 259 ms
5,632 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | AC | 286 ms
14,820 KB |
testcase_19 | AC | 172 ms
14,464 KB |
testcase_20 | AC | 170 ms
14,464 KB |
testcase_21 | AC | 232 ms
5,376 KB |
ソースコード
// g++ A.cpp -std=c++14 -I . && ./a.out #include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, a, b) for (int i = a; i < (int)(b); i++) #define all(v) v.begin(), v.end() using ll = long long; const ll INF = 1e18; // 変数定義 int N, M, Q, a, b, c, d, e, x, y, t, T, total, cnt, ans; struct dsu { public: dsu() : _n(0) {} dsu(int n) : _n(n), parent_or_size(n, -1) {} int merge(int a, int b) { assert(0 <= a && a < _n); assert(0 <= b && b < _n); int x = leader(a), y = leader(b); if (x == y) return x; if (-parent_or_size[x] < -parent_or_size[y]) swap(x, y); parent_or_size[x] += parent_or_size[y]; parent_or_size[y] = x; return x; } bool same(int a, int b) { assert(0 <= a && a < _n); assert(0 <= b && b < _n); return leader(a) == leader(b); } int leader(int a) { assert(0 <= a && a < _n); if (parent_or_size[a] < 0) return a; return parent_or_size[a] = leader(parent_or_size[a]); } int size(int a) { assert(0 <= a && a < _n); return -parent_or_size[leader(a)]; } private: int _n; // root node: -1 * component size // otherwise: parent vector<int> parent_or_size; }; int main() { // ios::sync_with_stdio(false); // cin.tie(nullptr); cin >> N >> M >> Q; dsu uf(N * 7); vector<string> S(N); rep(i, N) { cin >> S[i]; rep(j, 7) { if (S[i][j] == '1' && S[i][(j + 1) % 7] == '1') { uf.merge(i * 7 + j, i * 7 + (j + 1) % 7); // cout << i * 7 + j << ' ' << i * 7 + (j + 1) % 7 << '\n'; } } } vector<vector<int>> edge(N); rep(i, M) { cin >> x >> y; x--; y--; edge[x].push_back(y); edge[y].push_back(x); rep(j, 7) { if (S[x][j] == '1' && S[y][j] == '1') { uf.merge(x * 7 + j, y * 7 + j); // cout << x * 7 + j << ' ' << y * 7 + j << '\n'; } } } rep(i, Q) { cin >> t >> a >> b; a--; b--; if (t == 1) { S[a][b] = '1'; if (S[a][abs((b - 1) % 7)] == '1') { uf.merge(a * 7 + abs((b - 1) % 7), a * 7 + b); // cout << a * 7 + abs((b - 1) % 7) << ' ' << a * 7 + b << '\n'; } if (S[a][(b + 1) % 7] == '1') { uf.merge(a * 7 + (b + 1) % 7, a * 7 + b); // cout << a * 7 + ((b + 1) % 7) << ' ' << a * 7 + b << '\n'; } for (auto v : edge[a]) { if (S[v][b] == '1') { uf.merge(a * 7 + b, v * 7 + b); // cout << a * 7 + b << ' ' << v * 7 + b << '\n'; } } } else { cout << uf.size(a * 7) << '\n'; } } return 0; }