結果
問題 | No.2641 draw X |
ユーザー | ニックネーム |
提出日時 | 2024-02-19 23:45:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,195 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 220,072 KB |
最終ジャッジ日時 | 2024-09-29 03:15:23 |
合計ジャッジ時間 | 15,857 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,512 KB |
testcase_01 | AC | 37 ms
53,096 KB |
testcase_02 | AC | 37 ms
54,188 KB |
testcase_03 | AC | 38 ms
53,572 KB |
testcase_04 | AC | 38 ms
53,188 KB |
testcase_05 | AC | 38 ms
53,216 KB |
testcase_06 | AC | 38 ms
54,108 KB |
testcase_07 | AC | 38 ms
52,880 KB |
testcase_08 | AC | 38 ms
55,028 KB |
testcase_09 | AC | 38 ms
53,380 KB |
testcase_10 | AC | 39 ms
54,020 KB |
testcase_11 | AC | 38 ms
54,100 KB |
testcase_12 | AC | 38 ms
54,480 KB |
testcase_13 | AC | 39 ms
54,468 KB |
testcase_14 | AC | 39 ms
53,192 KB |
testcase_15 | AC | 379 ms
218,088 KB |
testcase_16 | AC | 1,541 ms
220,072 KB |
testcase_17 | AC | 36 ms
53,840 KB |
testcase_18 | AC | 35 ms
53,832 KB |
testcase_19 | AC | 38 ms
53,512 KB |
testcase_20 | AC | 212 ms
86,908 KB |
testcase_21 | AC | 282 ms
98,024 KB |
testcase_22 | AC | 232 ms
86,244 KB |
testcase_23 | AC | 235 ms
94,968 KB |
testcase_24 | AC | 136 ms
84,688 KB |
testcase_25 | AC | 145 ms
83,264 KB |
testcase_26 | AC | 338 ms
99,540 KB |
testcase_27 | AC | 196 ms
82,972 KB |
testcase_28 | AC | 312 ms
125,472 KB |
testcase_29 | AC | 379 ms
181,288 KB |
testcase_30 | AC | 491 ms
167,884 KB |
testcase_31 | AC | 487 ms
134,916 KB |
testcase_32 | AC | 661 ms
182,328 KB |
testcase_33 | AC | 1,187 ms
180,764 KB |
testcase_34 | AC | 601 ms
140,116 KB |
testcase_35 | AC | 717 ms
129,364 KB |
testcase_36 | AC | 1,131 ms
197,672 KB |
testcase_37 | TLE | - |
testcase_38 | AC | 1,389 ms
198,132 KB |
testcase_39 | AC | 1,494 ms
216,544 KB |
testcase_40 | TLE | - |
testcase_41 | AC | 957 ms
198,292 KB |
testcase_42 | AC | 1,683 ms
197,864 KB |
testcase_43 | AC | 1,583 ms
198,060 KB |
ソースコード
h,w = map(int,input().split()) s = [[v=="#" for v in input()] for _ in range(h)] lurd = [t[:] for t in s] for i in range(h-1): for j in range(w-1): lurd[i+1][j+1] += lurd[i][j] rdlu = [t[:] for t in s] for i in range(h-1,0,-1): for j in range(w-1,0,-1): rdlu[i-1][j-1] += rdlu[i][j] ruld = [t[:] for t in s] for i in range(h-1): for j in range(w-1,0,-1): ruld[i+1][j-1] += ruld[i][j] ldru = [t[:] for t in s] for i in range(h-1,0,-1): for j in range(w-1): ldru[i-1][j+1] += ldru[i][j] p1 = [[0]*(w+1) for _ in range(h+1)] p2 = [[0]*(w+1) for _ in range(h+1)] p3 = [[0]*(w+1) for _ in range(h+1)] p4 = [[0]*(w+1) for _ in range(h+1)] for i in range(1,h-1): for j in range(1,w-1): if s[i][j]==0: continue ac1 = 0; wa = min(h-i,w-j) while wa-ac1>1: wj = (ac1+wa)//2 if lurd[i+wj][j+wj]-lurd[i][j]==wj: ac1 = wj else: wa = wj ac2 = 0; wa = min(i+1,j+1) while wa-ac2>1: wj = (ac2+wa)//2 if rdlu[i-wj][j-wj]-rdlu[i][j]==wj: ac2 = wj else: wa = wj ac3 = 0; wa = min(h-i,j+1) while wa-ac3>1: wj = (ac3+wa)//2 if ruld[i+wj][j-wj]-ruld[i][j]==wj: ac3 = wj else: wa = wj ac4 = 0; wa = min(i+1,w-j) while wa-ac4>1: wj = (ac4+wa)//2 if ldru[i-wj][j+wj]-ldru[i][j]==wj: ac4 = wj else: wa = wj m = min(ac1,ac2,ac3,ac4) if m==0: continue p1[i][j] += 1; p1[i+m+1][j+m+1] -= 1 p2[i][j] += 1; p2[i-m-1][j-m-1] -= 1 p3[i][j] += 1; p3[i+m+1][j-m-1] -= 1 p4[i][j] += 1; p4[i-m-1][j+m+1] -= 1 for i in range(h): for j in range(w): p1[i+1][j+1] += p1[i][j] for i in range(h-1,-1,-1): for j in range(w-1,-1,-1): p2[i-1][j-1] += p2[i][j] for i in range(h): for j in range(w-1,-1,-1): p3[i+1][j-1] += p3[i][j] for i in range(h-1,-1,-1): for j in range(w): p4[i-1][j+1] += p4[i][j] t = [[False]*w for _ in range(h)] for i in range(h): for j in range(w): t[i][j] = p1[i][j]>0 or p2[i][j]>0 or p3[i][j]>0 or p4[i][j]>0 print("Yes" if s==t else "No")