結果
問題 |
No.179 塗り分け
|
ユーザー |
![]() |
提出日時 | 2016-03-22 01:36:27 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,520 bytes |
コンパイル時間 | 640 ms |
コンパイル使用メモリ | 74,396 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 03:17:44 |
合計ジャッジ時間 | 1,734 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 6 |
other | AC * 33 WA * 7 |
ソースコード
#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)); for(int y = 0; y < height; y++){ for(int x = 0; x < width; x++){ if (field[y][x] == '#' && color[y][x] == -1){ 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 true; } 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 = 0; dy < height; dy++){ for(int dx = 0; dx < width; dx++){ success |= check(dy, dx); } } if(success){ cout << "YES" << endl; }else{ cout << "NO" << endl; } return 0; }