結果
問題 | No.1266 7 Colors |
ユーザー | hamray |
提出日時 | 2020-11-11 17:24:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 237 ms / 3,000 ms |
コード長 | 3,732 bytes |
コンパイル時間 | 1,957 ms |
コンパイル使用メモリ | 169,356 KB |
実行使用メモリ | 18,364 KB |
最終ジャッジ日時 | 2024-07-22 18:33:33 |
合計ジャッジ時間 | 8,474 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 202 ms
6,272 KB |
testcase_04 | AC | 222 ms
13,568 KB |
testcase_05 | AC | 201 ms
6,912 KB |
testcase_06 | AC | 229 ms
14,720 KB |
testcase_07 | AC | 232 ms
16,512 KB |
testcase_08 | AC | 223 ms
13,952 KB |
testcase_09 | AC | 214 ms
11,520 KB |
testcase_10 | AC | 215 ms
10,496 KB |
testcase_11 | AC | 200 ms
7,680 KB |
testcase_12 | AC | 203 ms
8,576 KB |
testcase_13 | AC | 201 ms
9,472 KB |
testcase_14 | AC | 201 ms
6,784 KB |
testcase_15 | AC | 237 ms
16,768 KB |
testcase_16 | AC | 206 ms
8,960 KB |
testcase_17 | AC | 231 ms
16,000 KB |
testcase_18 | AC | 200 ms
18,364 KB |
testcase_19 | AC | 89 ms
17,920 KB |
testcase_20 | AC | 89 ms
17,920 KB |
testcase_21 | AC | 165 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> //using namespace atcoder; #pragma GCC target ("avx2") #pragma GCC optimization ("O3") #pragma GCC optimization ("unroll-loops") const double pi = 3.141592653589793238462643383279; using namespace std; //typedef //------------------------------------------ typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<string> VS; typedef pair<int, int> PII; typedef pair<long long, long long> PLL; typedef pair<int, PII> TIII; typedef long long LL; typedef unsigned long long ULL; typedef vector<LL> VLL; typedef vector<VLL> VVLL; //container util //------------------------------------------ #define ALL(a) (a).begin(), (a).endf() #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define MP make_pair #define SZ(a) int((a).size()) #define SQ(a) ((a) * (a)) #define EACH(i, c) for (typeof((c).begin()) i = (c).begin(); i != (c).endf(); ++i) #define EXIST(s, e) ((s).find(e) != (s).endf()) #define SORT(c) sort((c).begin(), (c).endf()) //repetition //------------------------------------------ #define FOR(i, s, n) for (int i = s; i < (int)n; ++i) #define REP(i, n) FOR(i, 0, n) #define MOD 1000000007 #define rep(i, a, b) for (int i = a; i < (b); ++i) #define trav(a, x) for (auto &a : x) #define all(x) x.begin(), x.end() #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; #define chmin(x, y) x = min(x, y) #define chmax(x, y) x = max(x, y) const double EPS = 1e-4, PI = acos(-1); //ここから編集 typedef string::const_iterator State; struct UnionFind{ vector<int> par; vector<int> siz; UnionFind(int sz_): par(sz_), siz(sz_) { for(int i=0; i<sz_; ++i) par[i] = i, siz[i] = 1; } void init(int sz_){ par.resize(sz_); siz.resize(sz_); for(int i=0; i<sz_; ++i) par[i] = i, siz[i] = 1; } int root(int x){ if(x == par[x]) return x; return par[x] = root(par[x]); } bool merge(int x, int y){ x = root(x), y = root(y); if(x == y) return false; if(siz[x] < siz[y]) swap(x, y); siz[x] += siz[y]; par[y] = x; return true; } bool issame(int x, int y){ return root(x) == root(y); } int size(int x){ return siz[root(x)]; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(15); int N, M, Q; cin >> N >> M >> Q; vector<string> s(N); UnionFind uf(N*8); REP(i,N){ cin >> s[i]; int mask = 0; for(int j=0; j<7; j++){ if(s[i][j] == '1' && s[i][(j+1)%7] == '1'){ uf.merge(i*7+j, i*7+(j+1)%7); } } } vector<vector<int>> g(N); REP(i,M){ int u, v; cin >> u >> v; u--; v--; g[u].push_back(v); g[v].push_back(u); } REP(v,N){ for(auto u: g[v]){ for(int i=0; i<7; i++){ if(s[v][i] == '1' && s[u][i] == '1'){ uf.merge(v*7+i, u*7+i); } } } } REP(i,Q){ int q; cin >> q; if(q == 1){ int x, y; cin >> x >> y; x--; y--; s[x][y] = '1'; for(auto u: g[x]){ for(int j=0; j<7; j++){ if(s[x][j]=='1' && s[u][j]=='1'){ uf.merge(x*7+j, u*7+j); } } } for(int j=0; j<7; j++){ if(s[x][j]=='1' && s[x][(j+1)%7]=='1'){ uf.merge(x*7+j, x*7+(j+1)%7); } } }else{ int x, t; cin >> x >> t; x--; cout << uf.size(x*7) << endl; } } return 0; }