結果
問題 | No.2641 draw X |
ユーザー | nono00 |
提出日時 | 2024-02-19 23:28:18 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 156 ms / 2,000 ms |
コード長 | 3,462 bytes |
コンパイル時間 | 2,888 ms |
コンパイル使用メモリ | 268,372 KB |
実行使用メモリ | 84,352 KB |
最終ジャッジ日時 | 2024-09-29 03:10:46 |
合計ジャッジ時間 | 6,170 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 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 | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 111 ms
62,976 KB |
testcase_16 | AC | 156 ms
84,352 KB |
testcase_17 | AC | 1 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 11 ms
8,192 KB |
testcase_21 | AC | 20 ms
13,824 KB |
testcase_22 | AC | 10 ms
8,320 KB |
testcase_23 | AC | 18 ms
12,032 KB |
testcase_24 | AC | 7 ms
6,820 KB |
testcase_25 | AC | 7 ms
6,820 KB |
testcase_26 | AC | 23 ms
14,976 KB |
testcase_27 | AC | 7 ms
6,820 KB |
testcase_28 | AC | 49 ms
28,288 KB |
testcase_29 | AC | 91 ms
52,224 KB |
testcase_30 | AC | 87 ms
45,568 KB |
testcase_31 | AC | 66 ms
34,048 KB |
testcase_32 | AC | 114 ms
55,808 KB |
testcase_33 | AC | 145 ms
68,992 KB |
testcase_34 | AC | 93 ms
41,216 KB |
testcase_35 | AC | 78 ms
36,352 KB |
testcase_36 | AC | 123 ms
63,104 KB |
testcase_37 | AC | 141 ms
79,232 KB |
testcase_38 | AC | 114 ms
62,592 KB |
testcase_39 | AC | 139 ms
71,168 KB |
testcase_40 | AC | 145 ms
78,336 KB |
testcase_41 | AC | 109 ms
58,752 KB |
testcase_42 | AC | 123 ms
67,456 KB |
testcase_43 | AC | 124 ms
65,024 KB |
ソースコード
#include <bits/stdc++.h> void solve() { int h, w; std::cin >> h >> w; std::vector<std::string> s(h); for (int i = 0; i < h; i++) std::cin >> s[i]; const int n = h + w - 1; std::vector<std::vector<std::pair<int, int>>> naname1(h + w - 1); std::vector<std::vector<std::pair<int, int>>> naname2(h + w - 1); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (s[i][j] == '#') { naname1[i + j].emplace_back(i, j); naname2[i + w - j - 1].emplace_back(i, j); } } } const int INF = 1e9; std::vector a(h, std::vector<int>(w, INF)); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (s[i][j] == '.') a[i][j] = 0; } } for (int k = 0; k < n; k++) { for (int l = 0; l < (int)naname1[k].size();) { int r = l + 1; while (r < (int)naname1[k].size() && naname1[k][r - 1].first + 1 == naname1[k][r].first) r++; int len = r - l; for (int c = 0; c < len; c++) { auto [i, j] = naname1[k][l + c]; a[i][j] = std::min({a[i][j], c, len - c - 1}); } l = r; } } for (int k = 0; k < n; k++) { for (int l = 0; l < (int)naname2[k].size();) { int r = l + 1; while (r < (int)naname2[k].size() && naname2[k][r - 1].first + 1 == naname2[k][r].first) r++; int len = r - l; for (int c = 0; c < len; c++) { auto [i, j] = naname2[k][l + c]; a[i][j] = std::min({a[i][j], c, len - c - 1}); } l = r; } } const int DI[] = {1, 1, -1, -1}; const int DJ[] = {1, -1, 1, -1}; std::priority_queue<std::tuple<int, int, int, int>> que; std::vector ans(h, std::vector(w, std::vector<int>(4))); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (a[i][j] != 0) { for (int k = 0; k < 4; k++) { ans[i][j][k] = a[i][j] + 1; } } } } for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { for (int d = 0; d < 2; d++) { int ni = i + DI[d]; int nj = j + DJ[d]; if (ni < 0 || ni >= h || nj < 0 || nj >= w) continue; ans[ni][nj][d] = std::max(ans[ni][nj][d], ans[i][j][d] - 1); } } } for (int i = h - 1; i >= 0; i--) { for (int j = 0; j < w; j++) { for (int d = 0; d < 2; d++) { int ni = i + DI[2 + d]; int nj = j + DJ[2 + d]; if (ni < 0 || ni >= h || nj < 0 || nj >= w) continue; ans[ni][nj][2 + d] = std::max(ans[ni][nj][2 + d], ans[i][j][2 + d] - 1); } } } for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { bool ok = false; for (int k = 0; k < 4; k++) { if (ans[i][j][k] > 0) { ok = true; } } if (s[i][j] == '#' && !ok) { std::cout << "No" << '\n'; return; } } } std::cout << "Yes" << '\n'; } int main() { std::cin.tie(0)->sync_with_stdio(0); std::cout << std::fixed << std::setprecision(16); int t = 1; while (t--) solve(); }