結果
問題 | No.179 塗り分け |
ユーザー | @abcde |
提出日時 | 2019-06-01 00:31:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,020 bytes |
コンパイル時間 | 1,676 ms |
コンパイル使用メモリ | 169,400 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-17 19:50:36 |
合計ジャッジ時間 | 3,876 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 13 ms
6,944 KB |
testcase_09 | AC | 13 ms
6,948 KB |
testcase_10 | AC | 17 ms
6,940 KB |
testcase_11 | AC | 14 ms
6,944 KB |
testcase_12 | AC | 16 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 17 ms
6,944 KB |
testcase_19 | AC | 13 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 14 ms
6,944 KB |
testcase_23 | AC | 18 ms
6,940 KB |
testcase_24 | AC | 14 ms
6,944 KB |
testcase_25 | AC | 14 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | AC | 36 ms
6,944 KB |
testcase_28 | AC | 48 ms
6,944 KB |
testcase_29 | AC | 48 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | AC | 54 ms
6,940 KB |
testcase_32 | AC | 44 ms
6,948 KB |
testcase_33 | AC | 46 ms
6,944 KB |
testcase_34 | WA | - |
testcase_35 | AC | 53 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 2 ms
6,944 KB |
testcase_38 | AC | 2 ms
6,944 KB |
testcase_39 | AC | 2 ms
6,940 KB |
testcase_40 | AC | 2 ms
6,940 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | AC | 3 ms
6,944 KB |
testcase_44 | AC | 8 ms
6,944 KB |
testcase_45 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { // 1. 入力情報取得. int H, W; cin >> H >> W; char c[H][W]; for(int i = 0; i < H; i++){ string s; cin >> s; for(int j = 0; j < W; j++) c[i][j] = s[j]; } // 2. '#' を カウント. int sharp = 0; for(int i = 0; i < H; i++) for(int j = 0; j < W; j++) if(c[i][j] == '#') sharp++; // 2-1. '#' の 個数が, 奇数の場合. if(sharp % 2 != 0){ cout << "NO" << endl; return 0; } // 2-2. '#' の 個数が, 偶数の場合. // (仮称)青の領域で, 1点固定して, ベクトルを一つ固定し, 青の領域を全探索した結果, // すべて, ベクトル方向に, '#' であれば, 塗り分けが存在すると判定. // ベクトルを, 1つ固定. string ans = "NO"; for(int vh = 0; vh < H; vh++){ for(int vw = 0; vw < W; vw++){ // ベクトル(0, 0) は, Skip. if(vh == 0 && vw == 0) continue; // 訪問したら, 1, 2 を セット. int memo[H][W] = {}; for(int h = 0; h < H; h++){ for(int w = 0; w < W; w++){ if(c[h][w] == '#' && memo[h][w] == 0 && c[h + vh][w + vw] == '#'){ memo[h][w] = 1; memo[h + vh][w + vw] = 2; } } } int one = 0, two = 0; for(int h = 0; h < H; h++){ for(int w = 0; w < W; w++){ if(memo[h][w] == 1) one++; if(memo[h][w] == 2) two++; } } // if(vh == 6 && vw == 5){ // for(int h = 0; h < H; h++){ // for(int w = 0; w < W; w++){ // cout << memo[h][w] << " "; // } // cout << endl; // } // } // 塗り分け の 存在チェック. if(one == sharp / 2 && two == sharp / 2){ ans = "YES"; break; } } } // 3. 出力. // ex. // [入力例] // 11 17 // .#.#.#.#......... // #.#.#.#.#..#..... // .#.#.#.#.##...... // ..#.#.#..##...... // ...#.#........... // ................. // ......#.#.#.#.... // .....#.#.#.#.#..# // ......#.#.#.#.##. // .......#.#.#..##. // ........#.#...... // // 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 // 1 0 1 0 1 0 1 0 1 0 0 1 0 0 0 0 0 // 0 1 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 // 0 0 1 0 1 0 1 0 0 1 1 0 0 0 0 0 0 // 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 // 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 // 0 0 0 0 0 0 2 0 2 0 2 0 2 0 0 0 0 // 0 0 0 0 0 2 0 2 0 2 0 2 0 2 0 0 2 // 0 0 0 0 0 0 2 0 2 0 2 0 2 0 2 2 0 // 0 0 0 0 0 0 0 2 0 2 0 2 0 0 2 2 0 // 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 // YES cout << ans << endl; return 0; }