結果

問題 No.2641 draw X
ユーザー ニックネームニックネーム
提出日時 2024-02-19 23:45:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,195 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 217,604 KB
最終ジャッジ日時 2024-02-19 23:46:00
合計ジャッジ時間 16,361 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,264 KB
testcase_01 AC 38 ms
53,460 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 38 ms
53,460 KB
testcase_04 AC 39 ms
53,460 KB
testcase_05 AC 38 ms
53,460 KB
testcase_06 AC 39 ms
53,460 KB
testcase_07 AC 38 ms
53,460 KB
testcase_08 AC 39 ms
53,460 KB
testcase_09 AC 40 ms
53,460 KB
testcase_10 AC 43 ms
53,460 KB
testcase_11 AC 39 ms
53,460 KB
testcase_12 AC 39 ms
53,460 KB
testcase_13 AC 38 ms
53,460 KB
testcase_14 AC 38 ms
53,460 KB
testcase_15 AC 410 ms
217,604 KB
testcase_16 AC 1,615 ms
211,376 KB
testcase_17 AC 40 ms
53,460 KB
testcase_18 AC 38 ms
53,460 KB
testcase_19 AC 39 ms
53,460 KB
testcase_20 AC 239 ms
86,148 KB
testcase_21 AC 311 ms
97,572 KB
testcase_22 AC 247 ms
85,516 KB
testcase_23 AC 261 ms
94,932 KB
testcase_24 AC 177 ms
84,340 KB
testcase_25 AC 157 ms
82,692 KB
testcase_26 AC 385 ms
98,808 KB
testcase_27 AC 212 ms
82,492 KB
testcase_28 AC 338 ms
125,072 KB
testcase_29 AC 401 ms
180,940 KB
testcase_30 AC 571 ms
167,728 KB
testcase_31 AC 602 ms
134,380 KB
testcase_32 AC 765 ms
182,072 KB
testcase_33 AC 1,254 ms
180,508 KB
testcase_34 AC 634 ms
139,732 KB
testcase_35 AC 788 ms
129,248 KB
testcase_36 AC 1,276 ms
197,380 KB
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0