結果

問題 No.179 塗り分け
ユーザー 👑 CleyLCleyL
提出日時 2022-09-21 14:01:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,410 bytes
コンパイル時間 1,082 ms
コンパイル使用メモリ 93,272 KB
実行使用メモリ 244,736 KB
最終ジャッジ日時 2024-06-01 17:23:41
合計ジャッジ時間 21,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 18 ms
7,296 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 TLE -
testcase_11 AC 2,706 ms
208,512 KB
testcase_12 AC 2,645 ms
208,384 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 645 ms
64,000 KB
testcase_19 AC 569 ms
59,392 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 141 ms
24,448 KB
testcase_24 AC 11 ms
6,940 KB
testcase_25 AC 13 ms
6,940 KB
testcase_26 AC 54 ms
12,032 KB
testcase_27 AC 205 ms
28,288 KB
testcase_28 AC 510 ms
51,968 KB
testcase_29 AC 611 ms
59,392 KB
testcase_30 AC 775 ms
73,472 KB
testcase_31 AC 958 ms
86,912 KB
testcase_32 AC 1,026 ms
88,320 KB
testcase_33 AC 1,054 ms
87,936 KB
testcase_34 AC 1,385 ms
114,688 KB
testcase_35 AC 1,433 ms
117,248 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 1 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 6 ms
6,940 KB
testcase_44 AC 36 ms
10,496 KB
testcase_45 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
#include <map>
using namespace std;
struct d{
  int a,b,c;
  bool operator<(d x){
    if(a == x.a){
      if(b == x.b){
        return c < x.c;
      }
      return b < x.b;
    }
    return a < x.a;
  }
  bool operator==(d x){
    return a==x.a && b==x.b && c==x.c;
  }
  bool operator>(d x){
    return !((*this) < x || (*this) == x);
  }
};
int main(){
  int h,w;cin>>h>>w;
  vector<vector<char>> A(h,vector<char>(w));
  int c = 0;
  for(int i = 0; h > i; i++){
    for(int j = 0; w > j; j++){
      cin>>A[i][j];
      if(A[i][j] == '#')c++;
    }
  }
  if(c%2 || c==0){
    cout << "NO" << endl;
    return 0;
  }
  int C = 0;
  set<pair<int,int>> X[4*h*w];
  for(int i = 0; h > i; i++){
    for(int j = 0; w > j; j++){
      for(int k = i; h > k; k++){
        for(int l = (i==k?j+1:0); w > l; l++){
          //cout << (i-k)*w+(j-l)+h*w << endl;
          int tmp = (i-k)*2*w+(j-l)+2*h*w;
          if(i==k && j==l)continue;
          if(A[i][j] == '#' && A[k][l] == '#'){
            //cout << i-k << " " << j-l << endl;
            if(!X[tmp].count({i,j})){

              X[tmp].insert({i,j});
              X[tmp].insert({k,l});
            }
          }
        }
      }
    }
  }

  for(int i = 0; 4*h*w > i; i++){
    if(X[i].size() == c){
      cout << "YES" << endl;
      return 0;
    }
  }
  cout << "NO" << endl;
}
0