結果

問題 No.179 塗り分け
ユーザー simansiman
提出日時 2016-03-22 01:39:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 23 ms / 3,000 ms
コード長 1,582 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-30 20:47:48
合計ジャッジ時間 2,261 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 23 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 3 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 3 ms
4,384 KB
testcase_19 AC 3 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 5 ms
4,376 KB
testcase_22 AC 10 ms
4,380 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 AC 4 ms
4,380 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 3 ms
4,376 KB
testcase_27 AC 3 ms
4,376 KB
testcase_28 AC 3 ms
4,380 KB
testcase_29 AC 3 ms
4,380 KB
testcase_30 AC 3 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 2 ms
4,376 KB
testcase_33 AC 3 ms
4,376 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 AC 3 ms
4,380 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 1 ms
4,376 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 2 ms
4,380 KB
testcase_40 AC 2 ms
4,376 KB
testcase_41 AC 2 ms
4,380 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 2 ms
4,376 KB
testcase_44 AC 2 ms
4,380 KB
testcase_45 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <limits.h>
#include <time.h>
#include <string>
#include <string.h>
#include <sstream>
#include <set>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <stack>
#include <queue>

using namespace std;

typedef long long ll;

int height, width;

const int WHITE = -1;
const int RED = 0;
const int BLUE = 1;

const int MAX_H = 50;
const int MAX_W = 50;

bool isInside(int y, int x){
  return (0 <= y && y < height && 0 <= x && x < width);
}

bool isOutside(int y, int x){
  return (y < 0 || height <= y || x < 0 || width <= x);
}

char field[MAX_H][MAX_W];

bool check(int dy, int dx){
  int color[height][width];
  memset(color, WHITE, sizeof(color));
  bool painted = false;

  for(int y = 0; y < height; y++){
    for(int x = 0; x < width; x++){
      if (field[y][x] == '#' && color[y][x] == -1){
        painted = true;
        color[y][x] = RED;

        int ny = y + dy;
        int nx = x + dx;
        if (isOutside(ny, nx)) return false;
        if (field[ny][nx] == '.' || color[ny][nx] != WHITE) return false;
        color[ny][nx] = BLUE;
      }
    }
  }

  return painted;
}

int main(){
  cin >> height >> width;


  for(int y = 0; y < height; y++){
    for(int x = 0; x < width; x++){
      cin >> field[y][x];
    }
  }

  bool success = false;

  for(int dy = -height; dy < height; dy++){
    for(int dx = -width; dx < width; dx++){
      success |= check(dy, dx);
    }
  }

  if(success){
    cout << "YES" << endl;
  }else{
    cout << "NO" << endl;
  }

  return 0;
}
0