結果
問題 | No.1266 7 Colors |
ユーザー | firiexp |
提出日時 | 2020-10-23 22:39:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 169 ms / 3,000 ms |
コード長 | 2,300 bytes |
コンパイル時間 | 1,409 ms |
コンパイル使用メモリ | 109,696 KB |
実行使用メモリ | 12,464 KB |
最終ジャッジ日時 | 2024-07-21 11:31:32 |
合計ジャッジ時間 | 5,196 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | 84 ms
5,760 KB |
testcase_04 | AC | 148 ms
9,600 KB |
testcase_05 | AC | 91 ms
6,016 KB |
testcase_06 | AC | 154 ms
10,240 KB |
testcase_07 | AC | 165 ms
11,136 KB |
testcase_08 | AC | 147 ms
9,600 KB |
testcase_09 | AC | 130 ms
8,448 KB |
testcase_10 | AC | 126 ms
7,936 KB |
testcase_11 | AC | 100 ms
6,528 KB |
testcase_12 | AC | 110 ms
6,944 KB |
testcase_13 | AC | 117 ms
7,424 KB |
testcase_14 | AC | 91 ms
5,888 KB |
testcase_15 | AC | 168 ms
11,136 KB |
testcase_16 | AC | 112 ms
7,040 KB |
testcase_17 | AC | 169 ms
10,752 KB |
testcase_18 | AC | 94 ms
12,464 KB |
testcase_19 | AC | 95 ms
11,904 KB |
testcase_20 | AC | 93 ms
12,032 KB |
testcase_21 | AC | 51 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using u64 = unsigned long long; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208; class UnionFind { int n; vector<int> uni; int forest_size; public: explicit UnionFind(int n) : n(n), uni(static_cast<u32>(n), -1), forest_size(n) {}; int root(int a){ if (uni[a] < 0) return a; else return (uni[a] = root(uni[a])); } bool unite(int a, int b) { a = root(a); b = root(b); if(a == b) return false; if(uni[a] > uni[b]) swap(a, b); uni[a] += uni[b]; uni[b] = a; forest_size--; return true; } int size(){ return forest_size; } int size(int i){ return -uni[root(i)]; } bool same(int a, int b) { return root(a) == root(b); } }; int main() { int n, m, q; cin >> n >> m >> q; vector<int> C(n); for (int i = 0; i < n; ++i) { string s; cin >> s; for (int j = 0; j < s.size(); ++j) { if(s[j] == '1') C[i] |= (1 << j); } } UnionFind uf(7*n); for (int i = 0; i < n; ++i) { for (int j = 0; j < 7; ++j) { if(C[i]&(1 << j) && C[i]&(1 << ((j+1)%7))){ uf.unite(i*7+j, i*7+(j+1)%7); } } } vector<vector<int>> G(n); for (int i = 0; i < m; ++i) { int a, b; scanf("%d %d", &a, &b); a--; b--; G[a].emplace_back(b); G[b].emplace_back(a); for (int j = 0; j < 7; ++j) { if(C[a]&(1 << j) && C[b]&(1 << j)) uf.unite(a*7+j, b*7+j); } } while(q--){ int t, x, y; scanf("%d %d %d", &t, &x, &y); x--; y--; if(t == 1){ C[x] |= (1 << y); if(C[x]&(1 << (y+1)%7)) uf.unite(x*7+y, x*7+(y+1)%7); if(C[x]&(1 << (y+6)%7)) uf.unite(x*7+y, x*7+(y+6)%7); for (auto &&i : G[x]) { if(C[i]&(1 << y)) uf.unite(x*7+y, i*7+y); } }else { printf("%d\n", uf.size(x*7)); } } return 0; }