結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | naimonon77 |
提出日時 | 2016-03-08 00:27:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 133 ms / 4,000 ms |
コード長 | 2,061 bytes |
コンパイル時間 | 1,340 ms |
コンパイル使用メモリ | 160,224 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-05-01 16:58:29 |
合計ジャッジ時間 | 3,310 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 19 ms
7,424 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 11 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 11 ms
5,376 KB |
testcase_18 | AC | 25 ms
5,760 KB |
testcase_19 | AC | 21 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 19 ms
5,760 KB |
testcase_22 | AC | 19 ms
7,296 KB |
testcase_23 | AC | 114 ms
7,808 KB |
testcase_24 | AC | 44 ms
6,144 KB |
testcase_25 | AC | 70 ms
7,808 KB |
testcase_26 | AC | 133 ms
7,936 KB |
testcase_27 | AC | 13 ms
5,376 KB |
testcase_28 | AC | 24 ms
7,552 KB |
testcase_29 | AC | 8 ms
5,376 KB |
testcase_30 | AC | 132 ms
8,064 KB |
testcase_31 | AC | 19 ms
5,376 KB |
testcase_32 | AC | 18 ms
5,376 KB |
testcase_33 | AC | 13 ms
8,064 KB |
testcase_34 | AC | 19 ms
5,376 KB |
testcase_35 | AC | 20 ms
5,504 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:74:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 74 | scanf("%d",&H); | ~~~~~^~~~~~~~~ main.cpp:75:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 75 | scanf("%d",&W); | ~~~~~^~~~~~~~~ main.cpp:78:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 78 | scanf("%d",&A[i][j]); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:81:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 81 | scanf("%d",&Q); | ~~~~~^~~~~~~~~ main.cpp:85:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 85 | scanf("%d %d %d",&R,&C,&X); | ~~~~~^~~~~~~~~~~~~~~~~~~~~ main.cpp:99:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 99 | scanf("%d %d %d",&R,&C,&X); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
ソースコード
#define _CRT_SECURE_NO_WARNINGS #define _USE_MATH_DEFINES #ifdef _MSC_VER #include "bits\stdc++.h" #else #include <bits/stdc++.h> #endif #include <vector> #include <set> #include <string> #include <queue> #include <list> #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) // #define rep(i,n) REP(i,1,n) #define ll long long #define ull unsigned ll typedef long double ld; #define SQR(X) ( (X)*(X) ) #define CUBE(X) ( (X)*(X)*(X) ) // #define int ll using namespace std; bool test = 0; /* ここからが本編 */ /* pow(x,n)はx^nを返すよ! */ static int A[200][200]; int H,W; int target_color; int next_color; void print_map() { int i,j; if(test) puts("---map---"); for(i=0;i<H;i++) { printf("%d",A[i][0]); for(j=1;j<W;j++) { printf(" %d",A[i][j]); } puts(""); } if(test) puts("---------"); } int draw(int R, int C) { int a = 1; if(test) { printf("A[%d][%d] = %d ",R,C,A[R][C]); printf("target_color = %d\n",target_color); } A[R][C] = next_color; if(test) { printf("R = %d C = %d\n",R,C); } if(R-1 > -1 && A[R-1][C] == target_color) { a += draw(R-1,C); } if(R+1 < H && A[R+1][C] == target_color) { a += draw(R+1,C); } if(C-1 > -1 && A[R][C-1] == target_color) { a += draw(R,C-1); } if(C+1 < W && A[R][C+1] == target_color) { a += draw(R,C+1); } return a; } int main(void) { int i,j,k,l; int Q; scanf("%d",&H); scanf("%d",&W); for(i=0;i<H;i++) { for(j=0;j<W;j++) { scanf("%d",&A[i][j]); } } scanf("%d",&Q); int R,C,X; bool all_draw = false; for(i=0;i<Q;i++) { scanf("%d %d %d",&R,&C,&X); R--;C--; int a = 0; if(A[R][C] != X) { target_color = A[R][C]; next_color = X; a = draw(R,C); if(test) print_map(); } if(a == H*W) { all_draw = true; break; } } for(;i<Q;i++) { scanf("%d %d %d",&R,&C,&X); } if(all_draw) { rep(i,H) rep(j,W) { A[i][j] = X; } } if(test) cout << "all_draw = " << all_draw << endl; print_map(); return 0; }