結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | satos___jp |
提出日時 | 2015-11-27 23:55:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,739 bytes |
コンパイル時間 | 1,005 ms |
コンパイル使用メモリ | 70,612 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-09-14 01:33:45 |
合計ジャッジ時間 | 5,063 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 25 ms
5,376 KB |
testcase_11 | AC | 58 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 231 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 10 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 23 ms
6,400 KB |
testcase_24 | AC | 24 ms
6,656 KB |
testcase_25 | AC | 270 ms
6,400 KB |
testcase_26 | AC | 259 ms
6,272 KB |
testcase_27 | AC | 128 ms
6,528 KB |
testcase_28 | WA | - |
testcase_29 | AC | 170 ms
5,376 KB |
testcase_30 | AC | 244 ms
6,656 KB |
testcase_31 | AC | 278 ms
6,784 KB |
testcase_32 | AC | 264 ms
6,656 KB |
testcase_33 | AC | 14 ms
5,376 KB |
testcase_34 | AC | 192 ms
5,376 KB |
testcase_35 | AC | 197 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:64:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 64 | scanf("%d%d",&h,&w); | ~~~~~^~~~~~~~~~~~~~ main.cpp:67:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | scanf("%d",&dat[y][x]); | ~~~~~^~~~~~~~~~~~~~~~~ main.cpp:109:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 109 | scanf("%d",&qqq); | ~~~~~^~~~~~~~~~~ main.cpp:112:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 112 | scanf("%d%d%d",&y,&x,&c); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstring> #include<vector> #include<queue> #include<algorithm> #include<cmath> #include<climits> #include<string> #include<set> #include<map> using namespace std; #define rep(i,n) for(int i=0;i<((int)(n));i++) #define reg(i,a,b) for(int i=((int)(a));i<=((int)(b));i++) #define irep(i,n) for(int i=((int)(n))-1;i>=0;i--) #define ireg(i,a,b) for(int i=((int)(b));i>=((int)(a));i--) typedef long long int lli; typedef pair<int,int> mp; #define fir first #define sec second #define IINF INT_MAX #define LINF LLONG_MAX int h,w; int dat[205][205]; int gone[205][205]; int dd[5]={1,0,-1,0,1}; vector<mp> vs[205][205]; mp uni[205][205]; void init(){ rep(y,205){ rep(x,205){ uni[y][x]=mp(y,x); } } } mp find(mp p){ mp& np=uni[p.fir][p.sec]; if(np==p)return p; return (np=find(np)); } void mer(mp pa,mp pb){ mp pp=find(pb); uni[pp.fir][pp.sec]=find(pa); } bool same(mp pa,mp pb){ return find(pa)==find(pb); } int main(void){ init(); scanf("%d%d",&h,&w); reg(y,1,h){ reg(x,1,w){ scanf("%d",&dat[y][x]); } } reg(y,1,h){ reg(x,1,w-1){ if(dat[y][x]==dat[y][x+1])mer(mp(y,x),mp(y,x+1)); } } reg(y,1,h-1){ reg(x,1,w){ if(dat[y][x]==dat[y+1][x])mer(mp(y+1,x),mp(y,x)); } } reg(y,1,h){ reg(x,1,w-1){ if(dat[y][x]!=dat[y][x+1]){ mp pa=find(mp(y,x)); mp pb=find(mp(y,x+1)); //printf("(%d %d) (%d %d)\n",pa.fir,pa.sec,pb.fir,pb.sec); vs[pa.fir][pa.sec].push_back(pb); vs[pb.fir][pb.sec].push_back(pa); } } } //printf("yo\n"); reg(y,1,h-1){ reg(x,1,w){ if(dat[y][x]!=dat[y+1][x]){ mp pa=find(mp(y,x)); mp pb=find(mp(y+1,x)); //printf("(%d %d) (%d %d)\n",pa.fir,pa.sec,pb.fir,pb.sec); vs[pa.fir][pa.sec].push_back(pb); vs[pb.fir][pb.sec].push_back(pa); } } } int qqq; scanf("%d",&qqq); rep(i,qqq){ int y,x,c; scanf("%d%d%d",&y,&x,&c); memset(gone,0,sizeof(gone)); mp np=find(mp(y,x)); y=np.fir; x=np.sec; //printf("np .. %d %d\n",np.fir,np.sec); if(dat[np.fir][np.sec]==c)continue; dat[np.fir][np.sec]=c; vector<mp> tvs; for(mp pa :vs[y][x]){ //printf("rin .. %d %d\n",pa.fir,pa.sec); if(!same(np,pa)){ mer(np,pa); /* reg(y,1,h){ reg(x,1,w){ mp pp=find(mp(y,x)); printf("%d%c",dat[pp.fir][pp.sec],x==w?'\n':' '); } }*/ for(mp pb :vs[pa.fir][pa.sec]){ if(!same(np,pb))tvs.push_back(pb); } } } swap(vs[y][x],tvs); /* reg(y,1,h){ reg(x,1,w){ mp pp=find(mp(y,x)); printf("%d%c",dat[pp.fir][pp.sec],x==w?'\n':' '); } }*/ } reg(y,1,h){ reg(x,1,w){ mp pp=find(mp(y,x)); printf("%d%c",dat[pp.fir][pp.sec],x==w?'\n':' '); } } return 0; } /* 4 4 1 0 1 1 0 1 1 0 1 0 0 1 0 1 1 0 3 2 3 0 2 3 1 2 3 0 */