結果
問題 | No.2641 draw X |
ユーザー | Nzt3 |
提出日時 | 2024-02-19 22:20:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,990 bytes |
コンパイル時間 | 2,237 ms |
コンパイル使用メモリ | 211,636 KB |
実行使用メモリ | 32,256 KB |
最終ジャッジ日時 | 2024-09-29 02:15:14 |
合計ジャッジ時間 | 9,840 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 40 ms
32,000 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 4 ms
6,820 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 20 ms
13,440 KB |
testcase_29 | AC | 31 ms
25,856 KB |
testcase_30 | AC | 33 ms
21,888 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int H,W; cin>>H>>W; vector<string>S(H); for(auto &i:S)cin>>i; vector dp00(H,vector(W,0)),dp01(H,vector(W,0)),dp10(H,vector(W,0)),dp11(H,vector(W,0)); for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ int t=0; if(i>0&&j>0&&S[i-1][j-1]=='#'){ t=dp00[i-1][j-1]; } if(S[i][j]=='#'){ dp00[i][j]=t+1; } } } for(int i=0;i<H;i++){ for(int j=W-1;j>=0;j--){ int t=0; if(i>0&&j+1<W&&S[i-1][j+1]=='#'){ t=dp01[i-1][j+1]; } if(S[i][j]=='#'){ dp01[i][j]=t+1; } } } for(int i=H-1;i>=0;i--){ for(int j=0;j<W;j++){ int t=0; if(i+1<H&&j>0&&S[i+1][j-1]=='#'){ t=dp10[i+1][j-1]; } if(S[i][j]=='#'){ dp10[i][j]=t+1; } } } for(int i=H-1;i>=0;i--){ for(int j=W-1;j>=0;j--){ int t=0; if(i+1<H&&j+1<W&&S[i+1][j+1]=='#'){ t=dp11[i+1][j+1]; } if(S[i][j]=='#'){ dp11[i][j]=t+1; } } } vector cnt(H,vector(W,0)); for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ cnt[i][j]=min({dp00[i][j],dp01[i][j],dp10[i][j],dp11[i][j]}); } } vector imos0(H+1,vector(W+1,0)),imos1(H+1,vector(W+1,0)); for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ int t=cnt[i][j]-1; if(t>=1){ imos0[i-t][j-t]+=1; imos0[i+t+1][j+t+1]-=1; imos1[i-t][j+t]+=1; imos1[i+t+1][j-t-1]-=1; } } } for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ if(i-1>=0&&j-1>=0){ imos0[i][j]+=imos0[i-1][j-1]; } } for(int j=W-1;j>=0;j--){ if(i-1>=0&&j+1<W){ imos1[i][j]+=imos1[i-1][j+1]; } } } for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ if(S[i][j]=='#'&&imos0[i][j]+imos1[i][j]==0){ cout<<"No\n"; return 0; } } } cout<<"Yes\n"; }