結果

問題 No.2641 draw X
ユーザー ニックネームニックネーム
提出日時 2024-02-20 00:00:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,261 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 228,796 KB
最終ジャッジ日時 2024-09-29 03:16:45
合計ジャッジ時間 21,953 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,000 KB
testcase_01 AC 37 ms
53,324 KB
testcase_02 AC 37 ms
53,192 KB
testcase_03 AC 37 ms
53,204 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 39 ms
53,944 KB
testcase_06 AC 38 ms
54,176 KB
testcase_07 AC 40 ms
53,420 KB
testcase_08 AC 40 ms
54,076 KB
testcase_09 AC 37 ms
53,216 KB
testcase_10 AC 39 ms
53,444 KB
testcase_11 AC 39 ms
53,424 KB
testcase_12 AC 39 ms
53,408 KB
testcase_13 AC 38 ms
53,080 KB
testcase_14 AC 38 ms
52,948 KB
testcase_15 AC 445 ms
215,380 KB
testcase_16 AC 1,260 ms
228,796 KB
testcase_17 AC 39 ms
53,496 KB
testcase_18 AC 38 ms
54,504 KB
testcase_19 AC 38 ms
54,376 KB
testcase_20 AC 221 ms
87,072 KB
testcase_21 AC 278 ms
99,684 KB
testcase_22 AC 236 ms
86,488 KB
testcase_23 AC 241 ms
95,788 KB
testcase_24 AC 137 ms
85,500 KB
testcase_25 AC 147 ms
84,236 KB
testcase_26 AC 328 ms
100,568 KB
testcase_27 AC 201 ms
83,368 KB
testcase_28 AC 322 ms
125,768 KB
testcase_29 AC 457 ms
191,300 KB
testcase_30 AC 538 ms
172,436 KB
testcase_31 AC 492 ms
141,488 KB
testcase_32 AC 676 ms
190,608 KB
testcase_33 AC 1,095 ms
190,832 KB
testcase_34 AC 593 ms
143,784 KB
testcase_35 AC 644 ms
135,236 KB
testcase_36 AC 1,027 ms
212,800 KB
testcase_37 TLE -
testcase_38 AC 1,245 ms
205,980 KB
testcase_39 AC 1,333 ms
226,224 KB
testcase_40 TLE -
testcase_41 AC 943 ms
207,072 KB
testcase_42 AC 1,422 ms
211,952 KB
testcase_43 AC 1,375 ms
208,652 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)
        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)
        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)
        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 = min(ac1,ac2,ac3,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