結果
問題 | No.1266 7 Colors |
ユーザー | beet |
提出日時 | 2020-10-23 22:44:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 200 ms / 3,000 ms |
コード長 | 1,976 bytes |
コンパイル時間 | 2,620 ms |
コンパイル使用メモリ | 209,096 KB |
実行使用メモリ | 17,728 KB |
最終ジャッジ日時 | 2024-07-21 11:45:34 |
合計ジャッジ時間 | 6,655 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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
6,016 KB |
testcase_04 | AC | 164 ms
13,184 KB |
testcase_05 | AC | 89 ms
6,912 KB |
testcase_06 | AC | 178 ms
14,336 KB |
testcase_07 | AC | 197 ms
15,916 KB |
testcase_08 | AC | 177 ms
13,440 KB |
testcase_09 | AC | 147 ms
11,136 KB |
testcase_10 | AC | 128 ms
10,368 KB |
testcase_11 | AC | 101 ms
7,680 KB |
testcase_12 | AC | 114 ms
8,576 KB |
testcase_13 | AC | 122 ms
9,344 KB |
testcase_14 | AC | 92 ms
6,656 KB |
testcase_15 | AC | 200 ms
16,128 KB |
testcase_16 | AC | 107 ms
8,704 KB |
testcase_17 | AC | 195 ms
15,488 KB |
testcase_18 | AC | 79 ms
17,728 KB |
testcase_19 | AC | 90 ms
17,408 KB |
testcase_20 | AC | 86 ms
17,136 KB |
testcase_21 | AC | 43 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; const char newl = '\n'; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);} template<typename T=int> vector<T> read(size_t n){ vector<T> ts(n); for(size_t i=0;i<n;i++) cin>>ts[i]; return ts; } struct UnionFind{ int num; vector<int> rs,ps; UnionFind(){} UnionFind(int n):num(n),rs(n,1),ps(n,0){iota(ps.begin(),ps.end(),0);} int find(int x){ return (x==ps[x]?x:ps[x]=find(ps[x])); } bool same(int x,int y){ return find(x)==find(y); } void unite(int x,int y){ x=find(x);y=find(y); if(x==y) return; if(rs[x]<rs[y]) swap(x,y); rs[x]+=rs[y]; ps[y]=x; num--; } int size(int x){ return rs[find(x)]; } int count() const{ return num; } }; //INSERT ABOVE HERE signed main(){ cin.tie(0); ios::sync_with_stdio(0); int n,m,q; cin>>n>>m>>q; auto ss=read<string>(n); vector<vector<int>> G(n); for(int i=0;i<m;i++){ int u,v; cin>>u>>v; u--;v--; G[u].emplace_back(v); G[v].emplace_back(u); } const int M = 7; UnionFind uf(M*n); auto idx=[&](int i,int j){return j*n+i;}; for(int i=0;i<n;i++){ for(int j=0;j<M;j++){ if(ss[i][j]=='1' and ss[i][(j+1)%M]=='1') uf.unite(idx(i,j),idx(i,(j+1)%M)); for(int k:G[i]) if(ss[i][j]=='1' and ss[k][j]=='1') uf.unite(idx(i,j),idx(k,j)); } } for(int i=0;i<q;i++){ int t,x,y; cin>>t>>x>>y; x--;y--; if(t==1){ ss[x][y]='1'; for(int j=0;j<M;j++) if(ss[x][j]=='1' and ss[x][(j+1)%M]=='1') uf.unite(idx(x,j),idx(x,(j+1)%M)); for(int z:G[x]) if(ss[x][y]=='1' and ss[z][y]=='1') uf.unite(idx(x,y),idx(z,y)); } if(t==2) cout<<uf.size(idx(x,0))<<newl; } return 0; }