結果
| 問題 | 
                            No.179 塗り分け
                             | 
                    
| コンテスト | |
| ユーザー | 
                             siman
                         | 
                    
| 提出日時 | 2016-03-22 01:39:12 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 20 ms / 3,000 ms | 
| コード長 | 1,582 bytes | 
| コンパイル時間 | 625 ms | 
| コンパイル使用メモリ | 74,648 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-23 14:35:14 | 
| 合計ジャッジ時間 | 1,926 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 6 | 
| other | AC * 40 | 
ソースコード
#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;
}
            
            
            
        
            
siman