結果
問題 | No.2641 draw X |
ユーザー | Aeren |
提出日時 | 2024-02-19 22:04:28 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 2,374 bytes |
コンパイル時間 | 3,452 ms |
コンパイル使用メモリ | 256,240 KB |
実行使用メモリ | 27,904 KB |
最終ジャッジ日時 | 2024-09-29 02:01:14 |
合計ジャッジ時間 | 5,293 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 32 ms
27,904 KB |
testcase_16 | AC | 47 ms
27,776 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 5 ms
6,816 KB |
testcase_21 | AC | 8 ms
7,040 KB |
testcase_22 | AC | 5 ms
6,820 KB |
testcase_23 | AC | 7 ms
6,816 KB |
testcase_24 | AC | 4 ms
6,816 KB |
testcase_25 | AC | 4 ms
6,816 KB |
testcase_26 | AC | 9 ms
7,168 KB |
testcase_27 | AC | 3 ms
6,816 KB |
testcase_28 | AC | 13 ms
11,776 KB |
testcase_29 | AC | 26 ms
22,400 KB |
testcase_30 | AC | 24 ms
19,200 KB |
testcase_31 | AC | 19 ms
13,696 KB |
testcase_32 | AC | 30 ms
22,400 KB |
testcase_33 | AC | 36 ms
22,272 KB |
testcase_34 | AC | 19 ms
14,336 KB |
testcase_35 | AC | 19 ms
12,800 KB |
testcase_36 | AC | 39 ms
25,344 KB |
testcase_37 | AC | 50 ms
26,624 KB |
testcase_38 | AC | 40 ms
24,064 KB |
testcase_39 | AC | 46 ms
27,520 KB |
testcase_40 | AC | 49 ms
26,240 KB |
testcase_41 | AC | 34 ms
24,064 KB |
testcase_42 | AC | 44 ms
25,088 KB |
testcase_43 | AC | 42 ms
24,320 KB |
ソースコード
// #pragma GCC optimize("O3,unroll-loops") #include <bits/stdc++.h> // #include <x86intrin.h> using namespace std; #if __cplusplus >= 202002L using namespace numbers; #endif template<class T> T &ctmin(T &x){ return x; } template<class T, class Head, class ...Tail> T &ctmin(T &x, const Head &h, const Tail &... t){ return ctmin(x = min<T>(x, h), t...); } template<class T> T &ctmax(T &x){ return x; } template<class T, class Head, class ...Tail> T &ctmax(T &x, const Head &h, const Tail &... t){ return ctmax(x = max<T>(x, h), t...); } int main(){ cin.tie(0)->sync_with_stdio(0); cin.exceptions(ios::badbit | ios::failbit); int nr, nc; cin >> nr >> nc; vector<string> a(nr); copy_n(istream_iterator<string>(cin), nr, a.begin()); vector ul(nr, vector(nc, 1)); auto ur = ul; auto dl = ul; auto dr = ul; for(auto x = 0; x < nr; ++ x){ for(auto y = 0; y < nc; ++ y){ if(a[x][y] == '.'){ ul[x][y] = ur[x][y] = 0; continue; } if(x >= 1){ if(y >= 1){ ul[x][y] = ul[x - 1][y - 1] + 1; } if(y + 1 < nc){ ur[x][y] = ur[x - 1][y + 1] + 1; } } } } for(auto x = nr - 1; x >= 0; -- x){ for(auto y = 0; y < nc; ++ y){ if(a[x][y] == '.'){ dl[x][y] = dr[x][y] = 0; continue; } if(x + 1 < nr){ if(y >= 1){ dl[x][y] = dl[x + 1][y - 1] + 1; } if(y + 1 < nc){ dr[x][y] = dr[x + 1][y + 1] + 1; } } } } vector<vector<int>> res_sum(nr, vector<int>(nc)); vector<vector<int>> res_dif(nr, vector<int>(nc)); for(auto x = 1; x < nr - 1; ++ x){ for(auto y = 1; y < nc - 1; ++ y){ int radius = min({ul[x][y], ur[x][y], dl[x][y], dr[x][y]}); if(radius <= 1){ continue; } ++ res_sum[x - radius + 1][y - radius + 1]; if(x + radius < nr && y + radius < nc){ -- res_sum[x + radius][y + radius]; } ++ res_dif[x - radius + 1][y + radius - 1]; if(x + radius < nr && y - radius >= 0){ -- res_dif[x + radius][y - radius]; } } } for(auto x = 0; x < nr - 1; ++ x){ for(auto y = 0; y < nc; ++ y){ if(y + 1 < nc){ res_sum[x + 1][y + 1] += res_sum[x][y]; } if(y - 1 >= 0){ res_dif[x + 1][y - 1] += res_dif[x][y]; } } } for(auto x = 0; x < nr; ++ x){ for(auto y = 0; y < nc; ++ y){ if(!!(res_sum[x][y] + res_dif[x][y]) != (a[x][y] == '#')){ cout << "No\n"; return 0; } } } cout << "Yes\n"; return 0; } /* */