結果
問題 | No.1266 7 Colors |
ユーザー | renjyaku_int |
提出日時 | 2020-12-24 18:57:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 117 ms / 3,000 ms |
コード長 | 5,047 bytes |
コンパイル時間 | 2,115 ms |
コンパイル使用メモリ | 211,272 KB |
実行使用メモリ | 19,500 KB |
最終ジャッジ日時 | 2024-09-21 17:01:28 |
合計ジャッジ時間 | 6,538 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 77 ms
8,700 KB |
testcase_04 | AC | 107 ms
14,732 KB |
testcase_05 | AC | 77 ms
8,548 KB |
testcase_06 | AC | 113 ms
15,684 KB |
testcase_07 | AC | 116 ms
17,272 KB |
testcase_08 | AC | 107 ms
15,104 KB |
testcase_09 | AC | 100 ms
12,800 KB |
testcase_10 | AC | 99 ms
12,032 KB |
testcase_11 | AC | 86 ms
9,392 KB |
testcase_12 | AC | 91 ms
10,312 KB |
testcase_13 | AC | 92 ms
10,880 KB |
testcase_14 | AC | 81 ms
8,484 KB |
testcase_15 | AC | 117 ms
17,644 KB |
testcase_16 | AC | 88 ms
10,368 KB |
testcase_17 | AC | 117 ms
17,024 KB |
testcase_18 | AC | 66 ms
19,500 KB |
testcase_19 | AC | 69 ms
17,328 KB |
testcase_20 | AC | 65 ms
17,276 KB |
testcase_21 | AC | 41 ms
6,940 KB |
ソースコード
//#include <tourist> #include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; typedef long long ll; typedef long double ld; typedef unsigned int uint; typedef unsigned long long ull; typedef pair<ll, ll> p; const int INF = 1e9; const double eps = 1e-7; const ll LINF = ll(1e18); const int MOD = 1000000007; const int dx[4] = {0, 1, 0, -1}, dy[4] = {-1, 0, 1, 0}; const int Dx[8] = {0, 1, 1, 1, 0, -1, -1, -1}, Dy[8] = {-1, -1, 0, 1, 1, 1, 0, -1}; const long double pi = 4 * atan(1); #define yes cout << "Yes" << endl #define YES cout << "YES" << endl #define no cout << "No" << endl #define NO cout << "NO" << endl #define rep(i, n) for (int i = 0; i < n; i++) #define ALL(v) v.begin(), v.end() #define debug(v) \ cout << #v << ":"; \ for (auto x : v) \ { \ cout << x << ' '; \ } \ cout << endl; template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } template <typename T> istream &operator>>(istream &is, vector<T> &v) { for (T &x : v) is >> x; return is; } //cout<<fixed<<setprecision(15);有効数字15桁 //-std=c++14 //g++ yarudake.cpp -std=c++17 -I . ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } // 素集合データ構造 struct UnionFind { // par[i]:データiが属する木の親の番号。i == par[i]のとき、データiは木の根ノードである vector<int> par; // sizes[i]:根ノードiの木に含まれるデータの数。iが根ノードでない場合は無意味な値となる vector<int> sizes; UnionFind(int n) : par(n), sizes(n, 1) { // 最初は全てのデータiがグループiに存在するものとして初期化 rep(i, n) par[i] = i; } // データxが属する木の根を得る int find(int x) { if (x == par[x]) return x; return par[x] = find(par[x]); // 根を張り替えながら再帰的に根ノードを探す } // 2つのデータx, yが属する木をマージする void unite(int x, int y) { // データの根ノードを得る x = find(x); y = find(y); // 既に同じ木に属しているならマージしない if (x == y) return; // xの木がyの木より大きくなるようにする if (sizes[x] < sizes[y]) swap(x, y); // xがyの親になるように連結する par[y] = x; sizes[x] += sizes[y]; // sizes[y] = 0; // sizes[y]は無意味な値となるので0を入れておいてもよい } // 2つのデータx, yが属する木が同じならtrueを返す bool same(int x, int y) { return find(x) == find(y); } // データxが含まれる木の大きさを返す int size(int x) { return sizes[find(x)]; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); ll n, m, q; cin >> n >> m >> q; vector<string> s(n); rep(i, n) cin >> s[i]; UnionFind uf(7 * n); vector<vector<ll>> e(n); rep(i, n) { rep(j, 6) { if (s[i][j] == '1' && s[i][j + 1] == '1') { uf.unite(i + j * n, i + (j + 1) * n); } } if (s[i][0] == '1' && s[i][6] == '1') { uf.unite(i + 0 * n, i + 6 * n); } } rep(i, m) { int u, v; cin >> u >> v; u--; v--; rep(j, 7) { if (s[u][j] == '1' && s[v][j] == '1') { uf.unite(u + j * n, v + j * n); } } e[u].push_back(v); e[v].push_back(u); } vector<ll> ans; rep(i, q) { int flag, x, y; cin >> flag >> x >> y; x--; y--; if (flag == 1) { if (y == 0) { if (s[x][6] == '1') uf.unite(x, x + 6 * n); } else { if (s[x][y - 1] == '1') uf.unite(x + y * n, x + (y - 1) * n); } if (y == 6) { if (s[x][0] == '1') uf.unite(x, x + 6 * n); } else { if (s[x][y + 1] == '1') uf.unite(x + y * n, x + (y + 1) * n); } rep(j, e[x].size()) { if (s[e[x][j]][y] == '1') { uf.unite(x + y * n, e[x][j] + y * n); } } s[x][y] = '1'; } else { ans.push_back(uf.size(x)); } } rep(i, ans.size()) cout << ans[i] << "\n"; }