結果
問題 | No.179 塗り分け |
ユーザー | 👑 CleyL |
提出日時 | 2022-09-21 13:34:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,696 bytes |
コンパイル時間 | 1,126 ms |
コンパイル使用メモリ | 95,908 KB |
実行使用メモリ | 146,804 KB |
最終ジャッジ日時 | 2024-06-01 17:21:56 |
合計ジャッジ時間 | 12,138 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 13 ms
6,656 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 23 ms
28,100 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1,618 ms
146,804 KB |
testcase_11 | AC | 1,325 ms
125,440 KB |
testcase_12 | AC | 1,322 ms
125,160 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 329 ms
53,620 KB |
testcase_19 | AC | 283 ms
49,616 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 30 ms
28,232 KB |
testcase_23 | AC | 94 ms
36,928 KB |
testcase_24 | AC | 27 ms
28,616 KB |
testcase_25 | AC | 27 ms
29,040 KB |
testcase_26 | WA | - |
testcase_27 | AC | 166 ms
40,340 KB |
testcase_28 | WA | - |
testcase_29 | AC | 370 ms
55,220 KB |
testcase_30 | WA | - |
testcase_31 | AC | 488 ms
64,668 KB |
testcase_32 | AC | 629 ms
74,576 KB |
testcase_33 | AC | 616 ms
72,192 KB |
testcase_34 | WA | - |
testcase_35 | AC | 747 ms
83,216 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 6 ms
5,376 KB |
testcase_44 | AC | 25 ms
9,088 KB |
testcase_45 | AC | 2 ms
5,376 KB |
ソースコード
#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[h*w]; vector<d> ZZ; for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ for(int k = i; h > k; k++){ for(int l = j; w > l; l++){ //cout << (i-k)*w+(j-l)+h*w << endl; int tmp = (i-k)*w+(j-l)+h*w; ZZ.push_back({tmp,(i-k),(j-l)}); 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].count({i,j})){ X[(i-k)*w+(j-l)+h*w].insert({i,j}); X[(i-k)*w+(j-l)+h*w].insert({k,l}); } } } } } } //sort(ZZ.begin(),ZZ.end()); //ZZ.erase(unique(ZZ.begin(),ZZ.end()),ZZ.end()); //for(int i = 0; ZZ.size() > i; i++){ // cout << ZZ[i].a << " " << ZZ[i].b << " " << ZZ[i].c << endl; //} for(int i = 0; h*w > i; i++){ if(X[i].size() == c){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; }