結果
問題 | No.2641 draw X |
ユーザー | t98slider |
提出日時 | 2024-03-10 20:37:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,633 bytes |
コンパイル時間 | 2,232 ms |
コンパイル使用メモリ | 215,624 KB |
実行使用メモリ | 67,236 KB |
最終ジャッジ日時 | 2024-09-29 21:46:34 |
合計ジャッジ時間 | 6,604 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 83 ms
59,008 KB |
testcase_16 | AC | 464 ms
67,236 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 8 ms
7,168 KB |
testcase_21 | AC | 15 ms
11,904 KB |
testcase_22 | AC | 9 ms
6,784 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 4 ms
5,760 KB |
testcase_26 | WA | - |
testcase_27 | AC | 6 ms
5,504 KB |
testcase_28 | AC | 36 ms
23,936 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 46 ms
27,904 KB |
testcase_32 | WA | - |
testcase_33 | AC | 223 ms
48,124 KB |
testcase_34 | AC | 99 ms
29,568 KB |
testcase_35 | AC | 80 ms
25,600 KB |
testcase_36 | WA | - |
testcase_37 | AC | 215 ms
56,320 KB |
testcase_38 | AC | 94 ms
50,432 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 101 ms
52,864 KB |
testcase_43 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template<class T> istream& operator >> (istream& is, vector<T>& vec) { for(T& x : vec) is >> x; return is; } int main(){ ios::sync_with_stdio(false); cin.tie(0); int h, w; cin >> h >> w; vector<string> A(h); cin >> A; vector dp(h, vector(w, vector<int>(4, -1))); vector<int> Sp, Sm; auto rec = [&](auto rec, int y, int x, int ds) -> int { if(y < 0 || x < 0 || y >= h || x >= w) return 1; if(dp[y][x][ds] != -1) return dp[y][x][ds]; if(A[y][x] == '.') return dp[y][x][ds] = 0; return dp[y][x][ds] = rec(rec, y + (ds & 1 ? 1 : -1), x + (ds & 2 ? 1 : -1), ds); }; for(int y = 0; y < h; y++){ for(int x = 0; x < w; x++){ if(A[y][x] == '.') continue; bool flg = true; for(int s = 0; s < 4; s++){ if(rec(rec, y, x, s) == 0){ flg = false; break; } } if(flg){ Sp.push_back(y + x); Sm.push_back(y - x); } } } sort(Sp.begin(), Sp.end()); Sp.erase(unique(Sp.begin(), Sp.end()), Sp.end()); sort(Sm.begin(), Sm.end()); Sm.erase(unique(Sm.begin(), Sm.end()), Sm.end()); for(int y = 0; y < h; y++){ for(int x = 0; x < w; x++){ if(A[y][x] == '.') continue; if(binary_search(Sp.begin(), Sp.end(), y + x) || binary_search(Sm.begin(), Sm.end(), y - x))continue; cout << "No\n"; return 0; } } cout << "Yes\n"; }