結果

問題 No.2641 draw X
ユーザー ニックネームニックネーム
提出日時 2024-02-20 00:00:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,261 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 227,708 KB
最終ジャッジ日時 2024-02-20 00:00:37
合計ジャッジ時間 21,288 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,460 KB
testcase_01 AC 34 ms
53,460 KB
testcase_02 AC 33 ms
53,460 KB
testcase_03 AC 37 ms
53,460 KB
testcase_04 AC 34 ms
53,460 KB
testcase_05 AC 33 ms
53,460 KB
testcase_06 AC 32 ms
53,460 KB
testcase_07 AC 33 ms
53,460 KB
testcase_08 AC 33 ms
53,460 KB
testcase_09 AC 39 ms
53,460 KB
testcase_10 AC 33 ms
53,460 KB
testcase_11 AC 32 ms
53,460 KB
testcase_12 AC 34 ms
53,460 KB
testcase_13 AC 32 ms
53,460 KB
testcase_14 AC 33 ms
53,460 KB
testcase_15 AC 466 ms
215,124 KB
testcase_16 AC 1,233 ms
227,708 KB
testcase_17 AC 35 ms
53,460 KB
testcase_18 AC 34 ms
53,460 KB
testcase_19 AC 34 ms
53,460 KB
testcase_20 AC 198 ms
86,524 KB
testcase_21 AC 279 ms
99,296 KB
testcase_22 AC 217 ms
86,200 KB
testcase_23 AC 223 ms
95,356 KB
testcase_24 AC 128 ms
85,132 KB
testcase_25 AC 138 ms
83,404 KB
testcase_26 AC 325 ms
100,280 KB
testcase_27 AC 197 ms
82,936 KB
testcase_28 AC 299 ms
125,424 KB
testcase_29 AC 418 ms
190,908 KB
testcase_30 AC 525 ms
172,208 KB
testcase_31 AC 462 ms
141,116 KB
testcase_32 AC 645 ms
190,444 KB
testcase_33 AC 909 ms
190,732 KB
testcase_34 AC 554 ms
143,452 KB
testcase_35 AC 581 ms
135,232 KB
testcase_36 AC 1,005 ms
212,164 KB
testcase_37 TLE -
testcase_38 AC 1,174 ms
205,672 KB
testcase_39 AC 1,245 ms
225,900 KB
testcase_40 AC 1,919 ms
218,684 KB
testcase_41 AC 884 ms
206,680 KB
testcase_42 AC 1,339 ms
211,480 KB
testcase_43 AC 1,324 ms
208,116 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