結果
問題 | No.179 塗り分け |
ユーザー | data9824 |
提出日時 | 2015-05-23 12:03:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,602 bytes |
コンパイル時間 | 463 ms |
コンパイル使用メモリ | 65,452 KB |
実行使用メモリ | 9,700 KB |
最終ジャッジ日時 | 2024-10-02 14:19:24 |
合計ジャッジ時間 | 1,844 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 16 ms
9,472 KB |
testcase_09 | WA | - |
testcase_10 | AC | 9 ms
9,472 KB |
testcase_11 | AC | 9 ms
9,320 KB |
testcase_12 | AC | 19 ms
9,216 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 17 ms
9,472 KB |
testcase_23 | AC | 10 ms
9,572 KB |
testcase_24 | AC | 17 ms
9,600 KB |
testcase_25 | AC | 4 ms
9,572 KB |
testcase_26 | WA | - |
testcase_27 | AC | 18 ms
9,600 KB |
testcase_28 | WA | - |
testcase_29 | AC | 19 ms
9,568 KB |
testcase_30 | WA | - |
testcase_31 | AC | 19 ms
9,568 KB |
testcase_32 | AC | 11 ms
9,580 KB |
testcase_33 | AC | 20 ms
9,472 KB |
testcase_34 | WA | - |
testcase_35 | AC | 21 ms
9,484 KB |
testcase_36 | AC | 1 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 1 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | AC | 4 ms
5,504 KB |
testcase_45 | AC | 2 ms
5,248 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; } static bool movable[50][50][50][50]; // [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][49][49] + 1, false); } else { for (int offsetY = 0; offsetY < h; ++offsetY) { for (int offsetX = 0; offsetX < w; ++offsetX) { movable[x][y][offsetX][offsetY] = (x + offsetX < w) && (y + offsetY < h) && (s[y + offsetY][x + offsetX] == '#'); } } } } } for (int offsetY = 0; offsetY < h; ++offsetY) { for (int offsetX = 0; offsetX < w; ++offsetX) { int movableCount = 0; for (int y = 0; y < h; ++y) { for (int x = 0; x < w; ++x) { if (movable[x][y][offsetX][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][offsetX][offsetY] && movable[x + offsetX][y + offsetY][offsetX][offsetY]) { overlapped = true; } } } if (!overlapped) { cout << "YES" << endl; return 0; } } } } cout << "NO" << endl; return 0; }