結果
問題 | No.1266 7 Colors |
ユーザー | auaua |
提出日時 | 2020-10-23 22:37:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,334 bytes |
コンパイル時間 | 1,850 ms |
コンパイル使用メモリ | 176,368 KB |
実行使用メモリ | 18,216 KB |
最終ジャッジ日時 | 2024-07-21 11:26:49 |
合計ジャッジ時間 | 5,591 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 64 ms
18,216 KB |
testcase_19 | AC | 71 ms
17,316 KB |
testcase_20 | AC | 69 ms
17,184 KB |
testcase_21 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define REP(i,m,n) for(int i=(m);i<(n);i++) #define rep(i,n) REP(i,0,n) #define pb push_back #define all(a) a.begin(),a.end() #define rall(c) (c).rbegin(),(c).rend() #define mp make_pair #define endl '\n' #define vec vector<ll> #define mat vector<vector<ll> > #define fi first #define se second typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> pll; typedef long double ld; typedef complex<double> comp; const ll INF=1e9+7; const ll inf=INF*INF; const ll MOD=1e9+7; const ll mod=MOD; const int MAX=200010; //Union-Find木 struct UnionFind { vector< int > data; UnionFind() = default; explicit UnionFind(size_t sz) : data(sz, -1) {} bool unite(int x, int y) { x = find(x), y = find(y); if(x == y) return false; if(data[x] > data[y]) swap(x, y); data[x] += data[y]; data[y] = x; return true; } int find(int k) { if(data[k] < 0) return (k); return data[k] = find(data[k]); } int size(int k) { return -data[find(k)]; } bool same(int x, int y) { return find(x) == find(y); } }; signed main(){ cin.tie(0); ios::sync_with_stdio(false); ll n,m,q;cin>>n>>m>>q; UnionFind uf(n*7); vector<string>s(n); rep(i,n)cin>>s[i]; vector<vector<ll> >G(n); rep(i,m){ ll u,v;cin>>u>>v; u--;v--; G[u].pb(v); G[v].pb(u); rep(col,7){ if(s[u][col]=='1'&&s[v][col]=='1')uf.unite(7*u+col,7*v+col); } } rep(i,n){ rep(col,7){ if(s[i][col]=='1'&&s[i][(col+1)%7]=='1'){ uf.unite(i*7+col,i*7+(col+1)%7); } } } while(q--){ ll t;cin>>t; if(t==1){ ll x,y;cin>>x>>y; x--; y--; s[x][y]='1'; if(s[x][(y+6)%7]=='1'){ uf.unite(x*7+y,x*7+(y+6)%7); } if(s[x][(y+1)%7]=='1'){ uf.unite(x*7+y,x*7+(y+1)%7); } for(auto e:G[x]){ if(s[e][y]=='1'){ uf.unite(x*7+y,e*7+y); } } }else{ ll x,y;cin>>x>>y; cout<<uf.size(x*7)<<endl; } } }