結果
問題 | No.1266 7 Colors |
ユーザー | snow39 |
提出日時 | 2020-10-23 22:43:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 177 ms / 3,000 ms |
コード長 | 2,259 bytes |
コンパイル時間 | 1,419 ms |
コンパイル使用メモリ | 103,668 KB |
実行使用メモリ | 20,552 KB |
最終ジャッジ日時 | 2024-07-21 11:35:51 |
合計ジャッジ時間 | 5,092 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 89 ms
6,528 KB |
testcase_04 | AC | 158 ms
15,104 KB |
testcase_05 | AC | 94 ms
7,168 KB |
testcase_06 | AC | 166 ms
16,256 KB |
testcase_07 | AC | 171 ms
18,400 KB |
testcase_08 | AC | 158 ms
15,488 KB |
testcase_09 | AC | 128 ms
12,544 KB |
testcase_10 | AC | 125 ms
11,648 KB |
testcase_11 | AC | 99 ms
8,320 KB |
testcase_12 | AC | 110 ms
9,344 KB |
testcase_13 | AC | 117 ms
10,368 KB |
testcase_14 | AC | 93 ms
7,168 KB |
testcase_15 | AC | 177 ms
18,688 KB |
testcase_16 | AC | 114 ms
9,600 KB |
testcase_17 | AC | 176 ms
17,888 KB |
testcase_18 | AC | 80 ms
20,552 KB |
testcase_19 | AC | 81 ms
20,076 KB |
testcase_20 | AC | 82 ms
20,092 KB |
testcase_21 | AC | 45 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) #define all(v) v.begin(),v.end() using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} class DisjointSet{ public: int N; vector<int> rank,p; vector<int> sz; DisjointSet(){} DisjointSet(int n):N(n),rank(n),p(n),sz(n){ for(int i=0;i<N;i++) makeSet(i); } void makeSet(int x){ p[x]=x; rank[x]=0; sz[x]=1; } bool same(int x,int y){ return leader(x)==leader(y); } void unite(int x,int y){ if(same(x,y)) return; link(leader(x),leader(y)); } void link(int x,int y){ if(rank[x]>rank[y]) swap(x,y); p[x]=y; sz[y]+=sz[x]; if(rank[x]==rank[y]){ ++rank[y]; } } int leader(int x){ if(x!=p[x]) p[x]=leader(p[x]); return p[x]; } int size(int x){ return sz[leader(x)]; } }; const int L=7; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N,M,Q; cin>>N>>M>>Q; vector<string> S(N); rep(i,N) cin>>S[i]; vector<vector<int>> g(N); rep(i,M){ int a,b; cin>>a>>b; a--;b--; g[a].push_back(b); g[b].push_back(a); } auto trans = [&](int a,int b){ return a*L+b; }; DisjointSet us(L*N); rep(i,N){ for(int j=0;j<L;j++){ if(S[i][j]=='1'&&S[i][(j+1)%L]=='1') us.unite(trans(i,j),trans(i,(j+1)%L)); } } rep(i,N){ for(auto nex:g[i]){ rep(j,L){ if(S[i][j]=='1'&&S[nex][j]=='1') us.unite(trans(i,j),trans(nex,j)); } } } rep(q,Q){ int t,x,y; cin>>t>>x>>y; if(t==1){ x--;y--; S[x][y]='1'; if(S[x][(y+1)%L]=='1') us.unite(trans(x,y),trans(x,(y+1)%L)); if(S[x][(y-1+L)%L]=='1') us.unite(trans(x,y),trans(x,(y-1+L)%L)); for(auto nex:g[x]){ if(S[x][y]=='1'&&S[nex][y]=='1') us.unite(trans(x,y),trans(nex,y)); } }else{ x--; int ans=us.size(trans(x,0)); cout<<ans<<"\n"; } } return 0; }