結果
問題 | No.1266 7 Colors |
ユーザー | kawara_y_kyopro |
提出日時 | 2020-10-23 23:28:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,290 bytes |
コンパイル時間 | 1,360 ms |
コンパイル使用メモリ | 130,568 KB |
実行使用メモリ | 9,136 KB |
最終ジャッジ日時 | 2024-07-21 13:24:20 |
合計ジャッジ時間 | 5,253 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 42 ms
6,940 KB |
ソースコード
#include <iostream> #include <array> #include <algorithm> #include <vector> #include <bitset> #include <set> #include <unordered_set> #include <cmath> #include <complex> #include <deque> #include <iterator> #include <numeric> #include <map> #include <unordered_map> #include <queue> #include <stack> #include <string> #include <tuple> #include <utility> #include <limits> #include <iomanip> #include <functional> #include <cassert> using namespace std; using ll=long long; template<class T> using V = vector<T>; template<class T, class U> using P = pair<T, U>; using vll = V<ll>; using vvll = V<vll>; #define ALL(v) v.begin(),v.end() template < class T > inline bool chmax(T& a, T b) {if (a < b) { a=b; return true; } return false; } template < class T > inline bool chmin(T& a, T b) {if (a > b) { a=b; return true; } return false; } #define DEBUG_VLL(vec) REP(sz, vec.size()) std::cerr<<vec[sz]<<(sz==vec.size()-1?'\n':' '); const long long MOD = 1000000007; const long long HIGHINF = (long long)1e18; const int INF = (int)1e9; class UnionFind { public: int n; std::vector<int> par; UnionFind(int n) : n(n), par(n, -1) {} // 集合の代表を返す int find(int x) { if (par[x] < 0) return x; return par[x] = find(par[x]); } // x と y が同じ集合に属するかを判別 bool same(int x, int y) { return find(x) == find(y); } // x が属する集合の大きさを返す int size(int x) { return -par[find(x)]; } // x と y を結合 (merge した場合に true を返す) bool unite(int x, int y) { int px = find(x), py = find(y); if (px == py) return false; if (par[px] > par[py]) swap(px, py); par[px] += par[py]; par[py] = px; return true; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); int n, m, q; cin >> n >> m >> q; V<string> s(n); UnionFind uni(7 * n); for (int i = 0; i < n; i++) { cin >> s[i]; for (int ci = 0; ci < n; ci++) { if (s[i][ci] == '1' and s[i][(ci + 1) % 7] == '1') { uni.unite(ci * n + i, ((ci + 1) % 7) * n + i); } if (s[i][ci] == '1' and s[i][(ci + 6) % 7] == '1') { uni.unite(ci * n + i, ((ci + 6) % 7) * n + i); } } } V< V<int> > nocol(n); for (int i = 0; i < m; i++) { int u, v; cin >> u >> v; u--, v--; nocol[u].emplace_back(v), nocol[v].emplace_back(u); for (int ci = 0; ci < 7; ci++) { if (s[u][ci] == '1' and s[v][ci] == '1') uni.unite(n * ci + u, n * ci + v); } } for (int _q = 0; _q < q; _q++) { int t, x, y; cin >> t >> x >> y; x--, y--; if (t == 1) { s[x][y] = '1'; if (s[x][y] == '1' and s[x][(y + 1) % 7] == '1') { uni.unite(y * n + x, ((y + 1) % 7) * n + x); } if (s[x][y] == '1' and s[x][(y + 6) % 7] == '1') { uni.unite(y * n + x, ((y + 6) % 7) * n + x); } for (int e: nocol[x]) { if (s[e][y] == '1') uni.unite(n * y + x, n * y + e); } } else { cout << uni.size(x) << '\n'; } } return 0; }