結果

問題 No.2641 draw X
ユーザー t98slidert98slider
提出日時 2024-03-10 20:49:04
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,054 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 212,120 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-09-29 21:47:04
合計ジャッジ時間 6,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 93 ms
67,072 KB
testcase_16 AC 352 ms
66,944 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 11 ms
7,680 KB
testcase_21 AC 23 ms
13,056 KB
testcase_22 WA -
testcase_23 AC 18 ms
11,520 KB
testcase_24 AC 7 ms
6,912 KB
testcase_25 AC 6 ms
6,144 KB
testcase_26 AC 28 ms
13,440 KB
testcase_27 AC 8 ms
5,888 KB
testcase_28 AC 44 ms
25,580 KB
testcase_29 AC 77 ms
53,264 KB
testcase_30 AC 86 ms
44,980 KB
testcase_31 AC 67 ms
30,892 KB
testcase_32 AC 123 ms
53,440 KB
testcase_33 AC 259 ms
52,860 KB
testcase_34 AC 86 ms
31,600 KB
testcase_35 AC 98 ms
28,116 KB
testcase_36 AC 172 ms
60,288 KB
testcase_37 AC 395 ms
63,744 KB
testcase_38 AC 191 ms
56,960 KB
testcase_39 AC 215 ms
66,048 KB
testcase_40 AC 384 ms
62,720 KB
testcase_41 AC 145 ms
57,216 KB
testcase_42 WA -
testcase_43 AC 217 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

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 dp2(h, vector<int>(w)), dp3(h, vector<int>(w));
    auto rec = [&](auto rec, int y, int x, int ds) -> int {
        if(y < 0 || x < 0 || y >= h || x >= w) return 0;
        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] = 1 + 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;
            int ans = 1 << 30;
            for(int s = 0; s < 4; s++){
                ans = min(ans, rec(rec, y, x, s));
            }
            if(ans >= 2) dp2[y][x] = dp3[y][x] = ans;
        }
    }
    for(int y = 0; y + 1 < h; y++){
        for(int x = 0; x < w; x++){
            if(x + 1 < w) dp2[y + 1][x + 1] = max(dp2[y + 1][x + 1], dp2[y][x] - 1);
            if(x >= 1) dp2[y + 1][x - 1] = max(dp2[y + 1][x - 1], dp2[y][x] - 1);
        }
    }
    for(int y = h - 1; y >= 1; y--){
        for(int x = 0; x < w; x++){
            if(x + 1 < w) dp3[y - 1][x + 1] = max(dp3[y - 1][x + 1], dp3[y][x] - 1);
            if(x >= 1) dp3[y - 1][x - 1] = max(dp3[y - 1][x - 1], dp3[y][x] - 1);
        }
    }

    for(int y = 0; y < h; y++){
        for(int x = 0; x < w; x++){
            if(A[y][x] == '.') continue;
            if(dp2[y][x] + dp3[y][x] == 0){
                cout << "No\n";
                return 0;
            }
        }
    }
    cout << "Yes\n";
}
0