結果
問題 | No.179 塗り分け |
ユーザー | t98slider |
提出日時 | 2022-06-22 10:19:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,951 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 175,428 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 13:46:52 |
合計ジャッジ時間 | 6,578 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 11 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 71 ms
5,248 KB |
testcase_09 | AC | 38 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 77 ms
5,248 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | AC | 3 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | RE | - |
testcase_43 | AC | 5 ms
5,248 KB |
testcase_44 | RE | - |
testcase_45 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int H, W; cin >> H >> W; vector<string> A(H); for(auto &&s:A)cin >> s; for(int my = 0; my <= H; my++){ for(int mx = -W; mx < 0; mx++){ bool flag = true; vector<vector<bool>> used(H, vector<bool>(W)); for(int y = 0; y < H; y++){ for(int x = W - 1; x >= 0; x--){ if(used[y][x])continue; if(A[y][x] != '#')continue; if(y + my >= H || x + mx >= W){ flag = false; continue; } used[y][x] = true; if(A[y + my][x + mx] == '#'){ used[y + my][x + mx] = true; }else{ flag = false; } } } if(flag){ cout << "YES" << '\n'; return 0; } } } for(int my = 0; my <= H; my++){ for(int mx = 0; mx <= W; mx++){ if(my == 0 && mx == 0)continue; bool flag = true; vector<vector<bool>> used(H, vector<bool>(W)); for(int y = 0; y < H; y++){ for(int x = 0; x < W; x++){ if(used[y][x])continue; if(A[y][x] != '#')continue; if(y + my >= H || x + mx >= W){ flag = false; continue; } used[y][x] = true; if(A[y + my][x + mx] == '#'){ used[y + my][x + mx] = true; }else{ flag = false; } } } if(flag){ cout << "YES" << '\n'; return 0; } } } cout << "NO" << '\n'; }