結果

問題 No.179 塗り分け
ユーザー Ssyoi waSsyoi wa
提出日時 2020-06-10 14:41:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,103 bytes
コンパイル時間 1,530 ms
コンパイル使用メモリ 165,928 KB
実行使用メモリ 11,912 KB
最終ジャッジ日時 2023-09-05 09:11:54
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define PI 3.141592653589
#define ll long long
using namespace std;

template<typename T_char>
T_char ToUpper(T_char cX){return toupper(cX);}

int  main(){
  int h, w;
  cin >> h >> w;
  char s[h][w];
  bool ns[h][w];
  for(int i=0; i<h*w; ++i) cin >> s[i];

  for(int i=0; i<h; ++i) for(int j=0; j<w; ++j) ns[i][j] = false; 

  bool flag = false;
  for(int dy=-h; dy<h; ++dy){
    for(int dx=-w; dy<w; ++dx){
      if(dy==0 && dx==0) continue;
      for(int i=0; i<h; ++i) for(int j=0; j<w; ++j) ns[i][j] = false; 

      for(int k=0; k<(h-1)*w+w; ++k){
        int y = k/w;
        int x = k%w;

        if(s[y][x] =='#' && ns[y][x] ==false){
          ns[y][x]=true;
        }
        if(y+dy<0 || y+dy>=h || x+dx<0 || x+dx>=w){
          flag = false;
          break;
        }
        if(s[y+dy][x+dx]=='#' && ns[y+dy][x+dx]==false){
          ns[y+dy][x+dx] = true;
          flag = true;
        }
        else{
          flag = false;
          break;
        }
      }
    }
    if(flag){
      cout << "YES" << endl;
      return 0;
    }
  }
  cout << "NO" << endl;
}
0