結果
問題 | No.1266 7 Colors |
ユーザー | butsurizuki |
提出日時 | 2020-10-23 22:15:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,757 bytes |
コンパイル時間 | 1,779 ms |
コンパイル使用メモリ | 171,416 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-07-21 10:50:58 |
合計ジャッジ時間 | 6,498 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
9,728 KB |
testcase_01 | AC | 8 ms
9,728 KB |
testcase_02 | AC | 7 ms
9,728 KB |
testcase_03 | AC | 126 ms
11,588 KB |
testcase_04 | AC | 154 ms
14,080 KB |
testcase_05 | AC | 119 ms
11,648 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 155 ms
14,208 KB |
testcase_09 | AC | 145 ms
13,184 KB |
testcase_10 | AC | 137 ms
12,928 KB |
testcase_11 | AC | 122 ms
12,032 KB |
testcase_12 | AC | 125 ms
12,288 KB |
testcase_13 | AC | 128 ms
12,544 KB |
testcase_14 | AC | 121 ms
11,648 KB |
testcase_15 | RE | - |
testcase_16 | AC | 127 ms
12,416 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 56 ms
10,880 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Graph=vector<vector<int>>; typedef struct{ int par; int dep; int size; }node; node uft[524288]; void resuf(){ int i; for(i=0;i<524288;i++){ uft[i].par=i;uft[i].dep=0;uft[i].size=1; } return; } int find(int x){ if(uft[x].par==x){return x;} else{uft[x].par=find(uft[x].par);return uft[x].par;} } void uni(int x,int y){ int xp,yp; xp=find(x);yp=find(y); if(xp==yp){return;} if(uft[xp].dep>uft[yp].dep){ uft[yp].par=xp; uft[xp].size+=uft[yp].size; } else{ uft[xp].par=yp; uft[yp].size+=uft[xp].size; if(uft[xp].dep==uft[yp].dep){uft[yp].dep++;} } return; } int size(int x){ x=find(x); return uft[x].size; } int main(){ resuf(); int n,m,q; scanf("%d%d%d",&n,&m,&q); char s[131072][8]; for(int i=1;i<=n;i++){ scanf("%s",s[i]); for(int j=0;j<7;j++){ if(s[i][j]=='1' && s[i][(j+1)%7]=='1'){ uni(7*i+j,7*i+((j+1)%7)); } } } Graph g(n+1); for(int i=0;i<m;i++){ int u,v; scanf("%d%d",&u,&v); g[u].push_back(v); g[v].push_back(u); for(int j=0;j<7;j++){ if(s[u][j]=='1' && s[v][j]=='1'){ uni(7*u+j,7*v+j); } } } while(q>0){ q--; int t,a,b; scanf("%d%d%d",&t,&a,&b); if(t==1){ s[a][b-1]='1'; int i=a; for(int j=0;j<7;j++){ if(s[i][j]=='1' && s[i][(j+1)%7]=='1'){ uni(7*i+j,7*i+((j+1)%7)); } } int u=a; for(auto v: g[u]){ for(int j=0;j<7;j++){ if(s[u][j]=='1' && s[v][j]=='1'){ uni(7*u+j,7*v+j); } } } } else{ printf("%d\n",size(7*a)); } } }