結果
問題 | No.179 塗り分け |
ユーザー | omu |
提出日時 | 2015-04-06 00:56:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 862 ms / 3,000 ms |
コード長 | 2,380 bytes |
コンパイル時間 | 835 ms |
コンパイル使用メモリ | 88,584 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 14:26:25 |
合計ジャッジ時間 | 9,637 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 41 ms
6,940 KB |
testcase_06 | AC | 11 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 52 ms
6,944 KB |
testcase_09 | AC | 52 ms
6,944 KB |
testcase_10 | AC | 160 ms
6,948 KB |
testcase_11 | AC | 138 ms
6,940 KB |
testcase_12 | AC | 381 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 190 ms
6,940 KB |
testcase_19 | AC | 178 ms
6,944 KB |
testcase_20 | AC | 361 ms
6,944 KB |
testcase_21 | AC | 273 ms
6,940 KB |
testcase_22 | AC | 268 ms
6,944 KB |
testcase_23 | AC | 133 ms
6,944 KB |
testcase_24 | AC | 229 ms
6,944 KB |
testcase_25 | AC | 121 ms
6,940 KB |
testcase_26 | AC | 196 ms
6,944 KB |
testcase_27 | AC | 572 ms
6,944 KB |
testcase_28 | AC | 441 ms
6,940 KB |
testcase_29 | AC | 738 ms
6,944 KB |
testcase_30 | AC | 282 ms
6,944 KB |
testcase_31 | AC | 862 ms
6,944 KB |
testcase_32 | AC | 273 ms
6,944 KB |
testcase_33 | AC | 676 ms
6,944 KB |
testcase_34 | AC | 357 ms
6,944 KB |
testcase_35 | AC | 744 ms
6,940 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | AC | 2 ms
6,940 KB |
testcase_38 | AC | 1 ms
6,944 KB |
testcase_39 | AC | 1 ms
6,944 KB |
testcase_40 | AC | 2 ms
6,940 KB |
testcase_41 | AC | 2 ms
6,944 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | AC | 10 ms
6,940 KB |
testcase_44 | AC | 71 ms
6,944 KB |
testcase_45 | AC | 3 ms
6,944 KB |
ソースコード
#include <cstdio> #include <iostream> #include <vector> #include <map> #include <set> #include <string> #include <cstring> #include <sstream> #include <algorithm> #include <functional> #include <queue> #include <stack> #include <cmath> #include <iomanip> using namespace std; inline int toInt(string s) { int v; istringstream sin(s); sin >> v; return v; } template<class T> inline string toString(T x) { ostringstream sout; sout << x; return sout.str(); } template<class T> inline T sqr(T x) { return x*x; } typedef pair<int, int> P; typedef long long ll; typedef unsigned long long ull; #define rep(i,n) for(int (i) = 0;(i) < (n);(i)++) #define clr(a) memset((a), 0 ,sizeof(a)) #define mclr(a) memset((a), -1 ,sizeof(a)) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(), (a).rend() #define sz(a) (sizeof(a)) #define Fill(a,v) fill((int*)a,(int*)(a+(SZ(a)/SZ(*(a)))),v) bool cheak(int x, int y, int xMax, int yMax){ return x >= 0 && y >= 0 && xMax > x && yMax > y; } const int dx[4] = { -1, 0, 1, 0 }, dy[4] = { 0, 1, 0, -1 }; const int mod = 1000000007; const int INF = 2147483647; int main() { int h,w; cin >> h >> w; string s[101]; rep(i, h){ cin >> s[i]; } rep(i, h){ rep(j, w){ if (s[i][j] == '.'){ if (i == h - 1 && j == w - 1) { cout << "NO" << endl; return 0; } } else goto SINITAI; } } SINITAI:; for (int k = -h*2; k < h*2; k++){ for (int l = -w*2; l < w*2; l++){ if (!(k == 0 && l == 0)){ bool f[51][51]; clr(f); rep(i, h){ rep(j, w){ if (s[i][j] == '.') f[i][j] = true; } } for (int i = 0; i < h; i++){ for (int j = 0; j < w; j++){ if (s[i][j] == '#' && !f[i][j]){ if (cheak(i + k, j + l, h, w)){ if (s[i + k][j + l] == '#' && !f[i + k][j + l]){ f[i][j] = true; f[i + k][j + l] = true; continue; } } if (cheak(i - k, j - l, h, w)){ if (s[i - k][j - l] == '#' && !f[i - k][j - l]){ f[i][j] = true; f[i - k][j - l] = true; continue; } } } } } rep(i, h){ rep(j, w){ if (f[i][j]){ if (i == h - 1 && j == w - 1){ cout << "YES" << endl; return 0; } } else goto LABEL; } } LABEL:; } } } cout << "NO" << endl; return 0; }