結果
問題 | No.1266 7 Colors |
ユーザー | fura |
提出日時 | 2020-10-23 22:46:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 192 ms / 3,000 ms |
コード長 | 1,636 bytes |
コンパイル時間 | 2,416 ms |
コンパイル使用メモリ | 209,444 KB |
実行使用メモリ | 15,152 KB |
最終ジャッジ日時 | 2024-07-21 11:47:41 |
合計ジャッジ時間 | 6,795 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 132 ms
6,016 KB |
testcase_04 | AC | 178 ms
11,520 KB |
testcase_05 | AC | 134 ms
6,528 KB |
testcase_06 | AC | 184 ms
12,416 KB |
testcase_07 | AC | 192 ms
13,460 KB |
testcase_08 | AC | 181 ms
11,648 KB |
testcase_09 | AC | 160 ms
9,984 KB |
testcase_10 | AC | 156 ms
9,088 KB |
testcase_11 | AC | 137 ms
7,168 KB |
testcase_12 | AC | 141 ms
7,808 KB |
testcase_13 | AC | 145 ms
8,448 KB |
testcase_14 | AC | 132 ms
6,400 KB |
testcase_15 | AC | 188 ms
13,928 KB |
testcase_16 | AC | 144 ms
8,064 KB |
testcase_17 | AC | 188 ms
13,100 KB |
testcase_18 | AC | 103 ms
15,152 KB |
testcase_19 | AC | 122 ms
14,816 KB |
testcase_20 | AC | 122 ms
14,912 KB |
testcase_21 | AC | 52 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; using graph=vector<vector<int>>; void add_undirected_edge(graph& G,int u,int v){ G[u].emplace_back(v); G[v].emplace_back(u); } class union_find{ int n; vector<int> p; public: union_find(int n):n(n),p(n,-1){} int find(int u){ return p[u]<0?u:p[u]=find(p[u]); } void unite(int u,int v){ u=find(u); v=find(v); if(u!=v){ if(p[v]<p[u]) swap(u,v); p[u]+=p[v]; p[v]=u; n--; } } bool is_same(int u,int v){ return find(u)==find(v); } int size()const{ return n; } int size(int u){ return -p[find(u)]; } }; int main(){ int n,m,q; scanf("%d%d%d",&n,&m,&q); vector<string> color(n); rep(u,n) cin>>color[u]; graph G(n); rep(i,m){ int u,v; scanf("%d%d",&u,&v); u--; v--; add_undirected_edge(G,u,v); } union_find U(7*n); rep(u,n) for(int v:G[u]) { rep(c,7) if(color[u][c]=='1' && color[v][c]=='1') { U.unite(u*7+c,v*7+c); } } rep(u,n){ rep(c,7){ if(color[u][c]=='1' && color[u][(c+1)%7]=='1') { U.unite(7*u+c,7*u+(c+1)%7); } if(color[u][c]=='1' && color[u][(c+6)%7]=='1') { U.unite(7*u+c,7*u+(c+6)%7); } } } rep(_,q){ int type,u,y; scanf("%d%d%d",&type,&u,&y); u--; y--; if(type==1){ color[u][y]='1'; for(int v:G[u]){ rep(c,7) if(color[u][c]=='1' && color[v][c]=='1') { U.unite(u*7+c,v*7+c); } } rep(c,7){ if(color[u][c]=='1' && color[u][(c+1)%7]=='1') { U.unite(7*u+c,7*u+(c+1)%7); } if(color[u][c]=='1' && color[u][(c+6)%7]=='1') { U.unite(7*u+c,7*u+(c+6)%7); } } } else{ printf("%d\n",U.size(7*u)); } } return 0; }