結果

問題 No.307 最近色塗る問題多くない?
ユーザー naimonon77naimonon77
提出日時 2015-12-29 02:57:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,509 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 61,468 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-09-19 08:22:01
合計ジャッジ時間 12,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,160 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 172 ms
5,376 KB
testcase_08 AC 3,978 ms
7,296 KB
testcase_09 AC 307 ms
5,504 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 83 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
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:61:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   61 |   scanf("%d",&H);
      |   ~~~~~^~~~~~~~~
main.cpp:62:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   62 |   scanf("%d",&W);
      |   ~~~~~^~~~~~~~~
main.cpp:65:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   65 |       scanf("%d",&A[i][j]);
      |       ~~~~~^~~~~~~~~~~~~~~
main.cpp:68:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   68 |   scanf("%d",&Q);
      |   ~~~~~^~~~~~~~~
main.cpp:71:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   71 |     scanf("%d %d %d",&R,&C,&X);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstring>
#include <algorithm>
#include <limits.h>
#include <cmath>
#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;

int 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("---------");
}
void draw(int R, int C) {
  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) {
    draw(R-1,C);
  }
  if(R-2 < H && A[R+1][C] == target_color) {
    draw(R+1,C);
  }
  if(C-1 > -1 && A[R][C-1] == target_color) {
    draw(R,C-1);
  }
  if(C-2 < W && A[R][C+1] == target_color) {
    draw(R,C+1);
  }
}
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;
  for(i=0;i<Q;i++) {
    scanf("%d %d %d",&R,&C,&X);
    R--;C--;
    if(A[R][C] != X) {
      target_color = A[R][C]; next_color = X;
      draw(R,C);
      if(test) print_map();
    }
  }
  print_map();
  return 0;
}
0