結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | kmjp |
提出日時 | 2015-11-27 22:56:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,071 bytes |
コンパイル時間 | 2,462 ms |
コンパイル使用メモリ | 175,264 KB |
実行使用メモリ | 16,880 KB |
最終ジャッジ日時 | 2024-09-14 00:16:01 |
合計ジャッジ時間 | 4,417 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
9,328 KB |
testcase_01 | AC | 8 ms
9,328 KB |
testcase_02 | AC | 9 ms
9,300 KB |
testcase_03 | AC | 8 ms
9,200 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 14 ms
10,348 KB |
testcase_11 | AC | 23 ms
11,508 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 10 ms
9,584 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 42 ms
16,756 KB |
testcase_28 | WA | - |
testcase_29 | AC | 16 ms
9,328 KB |
testcase_30 | WA | - |
testcase_31 | AC | 48 ms
16,876 KB |
testcase_32 | AC | 40 ms
16,720 KB |
testcase_33 | AC | 34 ms
14,956 KB |
testcase_34 | AC | 45 ms
14,960 KB |
testcase_35 | AC | 45 ms
14,960 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<to;x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template<int um> class UF { public: vector<int> par,rank; UF() {rank=vector<int>(um,0); for(int i=0;i<um;i++) par.push_back(i);} int operator[](int x) {return (par[x]==x)?(x):(par[x] = operator[](par[x]));} int operator()(int x,int y) { if((x=operator[](x))==(y=operator[](y))) return x; if(rank[x]>rank[y]) return par[x]=y; rank[x]+=rank[x]==rank[y]; return par[y]=x; } }; UF<500000> uf; int H,W,Q; int A[201*201]; set<int> S[201*201]; int id(int y,int x){ return y*W+x;} void solve() { int i,j,k,l,r,x,y; string s; cin>>H>>W; FOR(y,H) FOR(x,W) { cin>>A[y*W+x]; } FOR(y,H) FOR(x,W) { if(y) { if(A[id(y,x)]==A[id(y-1,x)]) uf(id(y,x),id(y-1,x)); else S[id(y,x)].insert(id(y-1,x)); } if(y<H-1) { if(A[id(y,x)]==A[id(y+1,x)]) uf(id(y,x),id(y+1,x)); else S[id(y,x)].insert(id(y+1,x)); } if(x) { if(A[id(y,x)]==A[id(y,x-1)]) uf(id(y,x),id(y,x-1)); else S[id(y,x)].insert(id(y,x-1)); } if(x<W-1) { if(A[id(y,x)]==A[id(y,x+1)]) uf(id(y,x),id(y,x+1)); else S[id(y,x)].insert(id(y,x+1)); } } FOR(x,H*W) if(uf[x]!=x) FORR(r,S[x]) S[uf[x]].insert(r); cin>>Q; while(Q--) { cin>>y>>x>>k; x=id(y-1,x-1); if(A[uf[x]]==k) continue; set<int> NEW; FORR(r,S[uf[x]]) { if(uf[x]!=uf[r]) { FORR(r2,S[uf[r]]) if(uf[r2]!=uf[x]) NEW.insert(r2); uf(x,r); } } A[uf[x]]=k; } FOR(y,H) { FOR(x,W) _P("%d%c",A[uf[id(y,x)]],(x==W-1)?'\n':' '); } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }