結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | fiord |
提出日時 | 2015-11-27 23:36:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 649 bytes |
コンパイル時間 | 1,428 ms |
コンパイル使用メモリ | 158,668 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-09-14 00:53:28 |
合計ジャッジ時間 | 7,439 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:18:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d",&a[i][j]); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:21:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | int q; scanf("%d",&q); | ~~~~~^~~~~~~~~ main.cpp:23:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | int r,c,x; scanf("%d %d %d",&r,&c,&x); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; int h,w; int a[200][200]; int mx[]={0,0,1,-1},my[]={1,-1,0,0}; void dfs(int i,int j,int c){ int moto=a[i][j]; a[i][j]=c; for(int k=0;k<4;k++){ int ny=i+my[k],nx=j+mx[k]; if(ny<0||h<=ny||nx<0||w<=nx) continue; if(moto==a[ny][nx]) dfs(ny,nx,c); } } int main(){ cin>>h>>w; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ scanf("%d",&a[i][j]); } } int q; scanf("%d",&q); for(int i=0;i<q;i++){ int r,c,x; scanf("%d %d %d",&r,&c,&x); if(x!=a[r-1][c-1]) dfs(r-1,c-1,x); } for(int i=0;i<h;i++){ for(int j=0;j<w;j++) printf("%c%d",j?' ':'\0',a[i][j]); printf("\b\n"); } return 0; }