結果

問題 No.2641 draw X
ユーザー ニックネームニックネーム
提出日時 2024-02-20 00:04:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,716 ms / 2,000 ms
コード長 2,262 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 228,024 KB
最終ジャッジ日時 2024-02-20 00:05:03
合計ジャッジ時間 18,238 ms
ジャッジサーバーID
(参考情報)
judge16 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,460 KB
testcase_01 AC 39 ms
53,460 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 36 ms
53,460 KB
testcase_04 AC 36 ms
53,460 KB
testcase_05 AC 36 ms
53,460 KB
testcase_06 AC 39 ms
53,460 KB
testcase_07 AC 37 ms
53,460 KB
testcase_08 AC 37 ms
53,460 KB
testcase_09 AC 37 ms
53,460 KB
testcase_10 AC 37 ms
53,460 KB
testcase_11 AC 36 ms
53,460 KB
testcase_12 AC 37 ms
53,460 KB
testcase_13 AC 37 ms
53,460 KB
testcase_14 AC 36 ms
53,460 KB
testcase_15 AC 471 ms
215,124 KB
testcase_16 AC 1,224 ms
228,024 KB
testcase_17 AC 37 ms
53,460 KB
testcase_18 AC 37 ms
53,460 KB
testcase_19 AC 37 ms
53,460 KB
testcase_20 AC 205 ms
86,524 KB
testcase_21 AC 245 ms
99,296 KB
testcase_22 AC 216 ms
85,892 KB
testcase_23 AC 215 ms
95,884 KB
testcase_24 AC 136 ms
85,004 KB
testcase_25 AC 144 ms
83,404 KB
testcase_26 AC 268 ms
99,900 KB
testcase_27 AC 183 ms
83,064 KB
testcase_28 AC 318 ms
125,552 KB
testcase_29 AC 427 ms
190,944 KB
testcase_30 AC 459 ms
172,108 KB
testcase_31 AC 417 ms
140,712 KB
testcase_32 AC 562 ms
190,400 KB
testcase_33 AC 901 ms
190,216 KB
testcase_34 AC 479 ms
143,100 KB
testcase_35 AC 525 ms
134,972 KB
testcase_36 AC 763 ms
212,052 KB
testcase_37 AC 1,716 ms
220,588 KB
testcase_38 AC 857 ms
205,476 KB
testcase_39 AC 944 ms
225,776 KB
testcase_40 AC 1,588 ms
218,308 KB
testcase_41 AC 714 ms
206,108 KB
testcase_42 AC 1,032 ms
211,388 KB
testcase_43 AC 1,001 ms
207,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split()); s = []
for _ in range(h): s += [v=="#" for v in input()]
lurd = s[:]
for i in range(h-1):
    for j in range(w-1):
        lurd[w*(i+1)+(j+1)] += lurd[w*i+j]
rdlu = s[:]
for i in range(h-1,0,-1):
    for j in range(w-1,0,-1):
        rdlu[w*(i-1)+(j-1)] += rdlu[w*i+j]
ruld = s[:]
for i in range(h-1):
    for j in range(w-1,0,-1):
        ruld[w*(i+1)+(j-1)] += ruld[w*i+j]
ldru = s[:]
for i in range(h-1,0,-1):
    for j in range(w-1):
        ldru[w*(i-1)+(j+1)] += ldru[w*i+j]
p1 = [0]*(h+1)*(w+1)
p2 = [0]*(h+1)*(w+1)
p3 = [0]*(h+1)*(w+1)
p4 = [0]*(h+1)*(w+1)
for i in range(1,h-1):
    for j in range(1,w-1):
        if s[w*i+j]==0: continue
        ac1 = 0; wa = min(h-i,w-j)
        while wa-ac1>1:
            wj = (ac1+wa)//2
            if lurd[w*(i+wj)+(j+wj)]-lurd[w*i+j]==wj: ac1 = wj
            else: wa = wj
        ac2 = 0; wa = min(i+1,j+1,ac1+1)
        while wa-ac2>1:
            wj = (ac2+wa)//2
            if rdlu[w*(i-wj)+(j-wj)]-rdlu[w*i+j]==wj: ac2 = wj
            else: wa = wj
        ac3 = 0; wa = min(h-i,j+1,ac2+1)
        while wa-ac3>1:
            wj = (ac3+wa)//2
            if ruld[w*(i+wj)+(j-wj)]-ruld[w*i+j]==wj: ac3 = wj
            else: wa = wj
        ac4 = 0; wa = min(i+1,w-j,ac3+1)
        while wa-ac4>1:
            wj = (ac4+wa)//2
            if ldru[w*(i-wj)+(j+wj)]-ldru[w*i+j]==wj: ac4 = wj
            else: wa = wj
        m = ac4
        if m==0: continue
        p1[(w+1)*i+j] += 1; p1[(w+1)*(i+m+1)+(j+m+1)] -= 1
        p2[(w+1)*i+j] += 1; p2[(w+1)*(i-m-1)+(j-m-1)] -= 1
        p3[(w+1)*i+j] += 1; p3[(w+1)*(i+m+1)+(j-m-1)] -= 1
        p4[(w+1)*i+j] += 1; p4[(w+1)*(i-m-1)+(j+m+1)] -= 1
t = [False]*h*w
for i in range(h):
    for j in range(w):
        t[w*i+j] |= p1[(w+1)*i+j]>0
        p1[(w+1)*(i+1)+(j+1)] += p1[(w+1)*i+j]
for i in range(h-1,-1,-1):
    for j in range(w-1,-1,-1):
        t[w*i+j] |= p2[(w+1)*i+j]>0
        p2[(w+1)*(i-1)+(j-1)] += p2[(w+1)*i+j]
for i in range(h):
    for j in range(w-1,-1,-1):
        t[w*i+j] |= p3[(w+1)*i+j]>0
        p3[(w+1)*(i+1)+(j-1)] += p3[(w+1)*i+j]
for i in range(h-1,-1,-1):
    for j in range(w):
        t[w*i+j] |= p4[(w+1)*i+j]>0
        p4[(w+1)*(i-1)+(j+1)] += p4[(w+1)*i+j]
print("Yes" if s==t else "No")
0