結果
問題 | No.1266 7 Colors |
ユーザー | bachoppi |
提出日時 | 2020-10-24 14:56:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 321 ms / 3,000 ms |
コード長 | 2,099 bytes |
コンパイル時間 | 1,394 ms |
コンパイル使用メモリ | 125,548 KB |
実行使用メモリ | 17,832 KB |
最終ジャッジ日時 | 2024-07-21 15:15:27 |
合計ジャッジ時間 | 7,503 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 239 ms
6,016 KB |
testcase_04 | AC | 283 ms
13,056 KB |
testcase_05 | AC | 238 ms
6,944 KB |
testcase_06 | AC | 295 ms
14,080 KB |
testcase_07 | AC | 298 ms
15,872 KB |
testcase_08 | AC | 282 ms
13,440 KB |
testcase_09 | AC | 266 ms
11,264 KB |
testcase_10 | AC | 258 ms
10,368 KB |
testcase_11 | AC | 236 ms
7,680 KB |
testcase_12 | AC | 248 ms
8,448 KB |
testcase_13 | AC | 255 ms
9,216 KB |
testcase_14 | AC | 238 ms
6,528 KB |
testcase_15 | AC | 282 ms
16,000 KB |
testcase_16 | AC | 250 ms
8,832 KB |
testcase_17 | AC | 321 ms
15,488 KB |
testcase_18 | AC | 260 ms
17,832 KB |
testcase_19 | AC | 160 ms
17,352 KB |
testcase_20 | AC | 162 ms
17,328 KB |
testcase_21 | AC | 223 ms
5,376 KB |
ソースコード
#include<iostream> #include <cstring> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; struct UnionFind{ vector<int> par,siz; UnionFind(int N): par(N), siz(N){ rep(i, N){ par[i] = i; siz[i] = 1; } } int root(int x){ if(par[x]==x) return x; else return root(par[x]); } void unite(int x, int y){ x=root(x); y=root(y); if(x==y) return; if(siz[x] < siz[y]) swap(x, y); par[y] = x; siz[x] += siz[y]; } bool same(int x, int y){ return root(x)==root(y); } int size(int x){ return siz[root(x)]; } }; int main(){ int n, m, q; cin >> n >> m >> q; string s[n]; rep(i, n) cin >> s[i]; vector<int> to[n]; rep(i, m){ int u, v; cin >> u >> v; u--; v--; to[u].push_back(v); to[v].push_back(u); } UnionFind uf(7*n); rep(i, n){ rep(j, 7){ if(s[i][j]=='1' && s[i][(j+1)%7]=='1'){ uf.unite(j*n+i, ((j+1)%7)*n+i); //cout << j*n+i << " " << ((j+1)%7)*n+i << endl; } if(s[i][j]=='1' && s[i][(j+7-1)%7]=='1'){ uf.unite(j*n+i, ((j+7-1)%7)*n+i); //cout << j*n+i << " " << (j+7-1)%7 << endl; } for(auto k: to[i]){ //cout << i << " " << k << endl; if(s[i][j]=='1' && s[k][j]=='1'){ uf.unite(j*n+i, j*n+k); //cout << j*n+i << " " << j*n+k << endl; } } } } //cout << uf.size(0) << endl; rep(i, q){ int a, x, y; cin >> a >> x >> y; x--; y--; if(a==1){ s[x][y] = '1'; if(s[x][(y+7-1)%7]=='1') uf.unite(y*n+x, ((y-1+7)%7)*n+x); if(s[x][(y+1)%7]=='1') uf.unite(y*n+x, ((y+1)%7)*n+x); for(auto k: to[x]){ if(s[k][y]=='1') uf.unite(y*n+x, y*n+k); } } else{ cout << uf.size(x) << endl; } } }