結果

問題 No.2641 draw X
ユーザー RubikunRubikun
提出日時 2024-02-19 21:38:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 3,334 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 219,072 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-09-29 01:34:59
合計ジャッジ時間 4,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 44 ms
35,712 KB
testcase_16 AC 59 ms
35,840 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 7 ms
6,816 KB
testcase_21 AC 12 ms
8,320 KB
testcase_22 AC 7 ms
6,820 KB
testcase_23 AC 10 ms
7,552 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 15 ms
8,576 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 18 ms
14,336 KB
testcase_29 AC 35 ms
28,672 KB
testcase_30 AC 34 ms
24,448 KB
testcase_31 AC 29 ms
17,152 KB
testcase_32 AC 47 ms
28,800 KB
testcase_33 AC 52 ms
28,416 KB
testcase_34 AC 32 ms
17,664 KB
testcase_35 AC 32 ms
16,000 KB
testcase_36 AC 62 ms
32,384 KB
testcase_37 AC 76 ms
34,176 KB
testcase_38 AC 65 ms
30,720 KB
testcase_39 AC 79 ms
35,328 KB
testcase_40 AC 80 ms
33,664 KB
testcase_41 AC 55 ms
30,976 KB
testcase_42 AC 72 ms
32,128 KB
testcase_43 AC 75 ms
31,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=1<<30;

vector<int> dh={-1,-1,1,1},dw={-1,1,-1,1};

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    int H,W;cin>>H>>W;
    vector<string> S(H);
    for(int i=0;i<H;i++){
        cin>>S[i];
    }
    
    vector<vector<vector<int>>> dp(4,vector<vector<int>>(H,vector<int>(W))),T;
    T=dp;
    
    for(int t=0;t<4;t++){
        if(t<2){
            for(int i=0;i<H;i++){
                for(int j=0;j<W;j++){
                    if(S[i][j]=='.') continue;
                    else{
                        int toh=i+dh[t],tow=j+dw[t];
                        if(0<=toh&&toh<H&&0<=tow&&tow<W){
                            dp[t][i][j]=dp[t][toh][tow]+1;
                        }else{
                            dp[t][i][j]=1;
                        }
                    }
                }
            }
        }else{
            for(int i=H-1;i>=0;i--){
                for(int j=0;j<W;j++){
                    if(S[i][j]=='.') continue;
                    else{
                        int toh=i+dh[t],tow=j+dw[t];
                        if(0<=toh&&toh<H&&0<=tow&&tow<W){
                            dp[t][i][j]=dp[t][toh][tow]+1;
                        }else{
                            dp[t][i][j]=1;
                        }
                    }
                }
            }
        }
    }
    
    for(int i=0;i<H;i++){
        for(int j=0;j<W;j++){
            int can=INF;
            for(int k=0;k<4;k++) chmin(can,dp[k][i][j]);
            if(can>=2){
                for(int k=0;k<4;k++){
                    T[k][i][j]=can;
                    //cout<<T[k][i][j]<<" "<<i<<" "<<j<<endl;
                }
            }
        }
    }
    
    for(int t=0;t<4;t++){
        if(t>=2){
            for(int i=0;i<H;i++){
                for(int j=0;j<W;j++){
                    if(T[t][i][j]<=1) continue;
                    else{
                        int toh=i+dh[t],tow=j+dw[t];
                        chmax(T[t][toh][tow],T[t][i][j]-1);
                    }
                }
            }
        }else{
            for(int i=H-1;i>=0;i--){
                for(int j=0;j<W;j++){
                    if(T[t][i][j]<=1) continue;
                    else{
                        int toh=i+dh[t],tow=j+dw[t];
                        chmax(T[t][toh][tow],T[t][i][j]-1);
                    }
                }
            }
        }
    }
    
    for(int i=0;i<H;i++){
        for(int j=0;j<W;j++){
            int f=0;
            for(int k=0;k<4;k++) if(T[k][i][j]) f=1;
            if(S[i][j]=='#'){
                if(f==0){
                    cout<<"No\n";
                    return 0;
                }
            }else{
                if(f){
                    cout<<"No\n";
                    return 0;
                }
            }
        }
    }
    
    cout<<"Yes\n";
}

0