結果

問題 No.179 塗り分け
ユーザー oxyshoweroxyshower
提出日時 2020-01-09 12:45:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,530 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 175,576 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-23 03:49:26
合計ジャッジ時間 5,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 18 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 WA -
testcase_08 AC 98 ms
5,248 KB
testcase_09 AC 99 ms
5,248 KB
testcase_10 AC 76 ms
5,248 KB
testcase_11 AC 65 ms
5,248 KB
testcase_12 AC 121 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 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 AC 66 ms
5,248 KB
testcase_19 AC 60 ms
5,248 KB
testcase_20 AC 116 ms
5,248 KB
testcase_21 AC 108 ms
5,248 KB
testcase_22 AC 105 ms
5,248 KB
testcase_23 AC 60 ms
5,248 KB
testcase_24 AC 104 ms
5,248 KB
testcase_25 AC 52 ms
5,248 KB
testcase_26 AC 76 ms
5,248 KB
testcase_27 AC 156 ms
5,248 KB
testcase_28 AC 96 ms
5,248 KB
testcase_29 AC 195 ms
5,248 KB
testcase_30 AC 139 ms
5,248 KB
testcase_31 AC 215 ms
5,248 KB
testcase_32 AC 119 ms
5,248 KB
testcase_33 AC 187 ms
5,248 KB
testcase_34 AC 126 ms
5,248 KB
testcase_35 AC 203 ms
5,248 KB
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 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 7 ms
5,248 KB
testcase_44 AC 28 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL_DEBUG
  #include "LOCAL_DEBUG.hpp"
#endif
#define int long long

template<class T> vector<T> make_vec(size_t a) { return vector<T>(a); }
template<class T, class... Ts> auto make_vec(size_t a, Ts... ts) {
  return vector<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...));
}
template<class T, class V>
typename enable_if<is_class<T>::value == 0>::type fill(T &t, const V &v) {
    t = v;
}
template<class T, class V>
typename enable_if<is_class<T>::value != 0>::type fill(T &t, const V &v){
    for (auto &e : t) fill(e, v);
}
// auto v = make_vec<int>(h, w);
// fill(v, 0);

signed main(){

  int h, w; cin >> h >> w;
  vector<string> s(h);
  for(int i = 0; i < h; i++){
    cin >> s[i];

  }

  for(int i = -h; i < h; i++){
    for(int j = -w; j < w; j++){
      if(i == 0 && j == 0) continue;
      auto v = make_vec<int>(h, w);
      fill(v, 0);
      auto visited = make_vec<int>(h, w);
      fill(visited, 0);
      bool judge = true;
      for(int k = 0; k < h; k++){
        for(int l = 0; l < w; l++){
          if(visited[k][l]) continue;
          if(s[k][l] == '#'){
            if(visited[k][l]) continue;
            if((k + i < 0 || h <= k + i || l + j < 0 || w <= l + j) || s[k + i][l + j] == '.'){
              judge = false;
            }else{
              visited[k + i][l + j] = 1;
            }
          }
        }
      }
      if(judge){
        cout << "YES" << endl;
        return 0;
      }
    }
  }
  cout << "NO" << endl;

  return 0;
}
0