結果
問題 | No.179 塗り分け |
ユーザー | data9824 |
提出日時 | 2015-05-23 12:32:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,789 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 64,980 KB |
実行使用メモリ | 27,904 KB |
最終ジャッジ日時 | 2024-10-02 14:19:58 |
合計ジャッジ時間 | 5,633 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 14 ms
27,896 KB |
testcase_09 | AC | 17 ms
27,776 KB |
testcase_10 | AC | 111 ms
27,752 KB |
testcase_11 | AC | 94 ms
25,984 KB |
testcase_12 | AC | 209 ms
26,112 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 211 ms
27,900 KB |
testcase_23 | AC | 93 ms
27,632 KB |
testcase_24 | AC | 220 ms
27,888 KB |
testcase_25 | AC | 127 ms
27,880 KB |
testcase_26 | AC | 108 ms
27,876 KB |
testcase_27 | AC | 230 ms
27,896 KB |
testcase_28 | AC | 138 ms
27,904 KB |
testcase_29 | AC | 239 ms
27,860 KB |
testcase_30 | AC | 104 ms
27,736 KB |
testcase_31 | AC | 242 ms
27,888 KB |
testcase_32 | AC | 115 ms
27,904 KB |
testcase_33 | AC | 253 ms
27,776 KB |
testcase_34 | WA | - |
testcase_35 | AC | 255 ms
27,864 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
testcase_38 | AC | 1 ms
5,376 KB |
testcase_39 | AC | 1 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 1 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 4 ms
6,016 KB |
testcase_44 | AC | 16 ms
11,392 KB |
testcase_45 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { int h, w; cin >> h >> w; vector<string> s(h); int blackCount = 0; for (int i = 0; i < h; ++i) { cin >> s[i]; blackCount += count(s[i].begin(), s[i].end(), '#'); } if (blackCount == 0 || blackCount % 2 == 1) { cout << "NO" << endl; return 0; } const int OFFSET_BASE = 50; static bool movable[50][50][100][100]; // [cellX][cellY][offsetX][offsetY] for (int y = 0; y < h; ++y) { for (int x = 0; x < w; ++x) { if (s[y][x] == '.') { fill(&movable[x][y][0][0], &movable[x][y][99][99] + 1, false); } else { for (int offsetY = -h; offsetY < h; ++offsetY) { for (int offsetX = -w; offsetX < w; ++offsetX) { movable[x][y][OFFSET_BASE + offsetX][OFFSET_BASE + offsetY] = (0 <= x + offsetX && x + offsetX < w) && (0 <= y + offsetY && y + offsetY < h) && (s[y + offsetY][x + offsetX] == '#'); } } } } } for (int offsetY = -h; offsetY < h; ++offsetY) { for (int offsetX = -w; offsetX < w; ++offsetX) { int movableCount = 0; for (int y = 0; y < h; ++y) { for (int x = 0; x < w; ++x) { if (movable[x][y][OFFSET_BASE + offsetX][OFFSET_BASE + offsetY]) { ++movableCount; } } } if (movableCount == blackCount / 2) { bool overlapped = false; for (int y = 0; y < h && !overlapped; ++y) { for (int x = 0; x < w && !overlapped; ++x) { if (movable[x][y][OFFSET_BASE + offsetX][OFFSET_BASE + offsetY] && movable[x + offsetX][y + offsetY][OFFSET_BASE + offsetX][OFFSET_BASE + offsetY]) { overlapped = true; } } } if (!overlapped) { cout << "YES" << endl; return 0; } } } } cout << "NO" << endl; return 0; }