結果

問題 No.2328 Build Walls
ユーザー nikoro256nikoro256
提出日時 2023-05-28 15:28:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 855 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 153,052 KB
最終ジャッジ日時 2024-06-08 07:48:37
合計ジャッジ時間 22,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
60,848 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 34 ms
52,608 KB
testcase_04 AC 37 ms
52,992 KB
testcase_05 AC 36 ms
52,736 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 37 ms
52,608 KB
testcase_08 AC 35 ms
53,120 KB
testcase_09 AC 35 ms
52,864 KB
testcase_10 AC 35 ms
52,480 KB
testcase_11 AC 35 ms
52,736 KB
testcase_12 AC 33 ms
52,864 KB
testcase_13 AC 140 ms
82,304 KB
testcase_14 AC 1,190 ms
101,956 KB
testcase_15 AC 584 ms
83,592 KB
testcase_16 AC 129 ms
77,312 KB
testcase_17 AC 357 ms
81,188 KB
testcase_18 AC 100 ms
77,188 KB
testcase_19 AC 47 ms
67,200 KB
testcase_20 AC 112 ms
76,776 KB
testcase_21 AC 71 ms
77,184 KB
testcase_22 AC 2,271 ms
153,052 KB
testcase_23 AC 1,987 ms
106,652 KB
testcase_24 AC 1,600 ms
101,024 KB
testcase_25 AC 1,875 ms
105,124 KB
testcase_26 AC 960 ms
92,356 KB
testcase_27 AC 1,454 ms
97,116 KB
testcase_28 AC 90 ms
80,812 KB
testcase_29 AC 1,953 ms
108,564 KB
testcase_30 AC 182 ms
88,320 KB
testcase_31 AC 149 ms
87,936 KB
testcase_32 AC 1,381 ms
95,744 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
ds=[[0,1],[1,1],[-1,1],[1,0],[-1,0],[0,-1],[1,-1],[-1,-1]]
def daiku():
    hq=[]
    for i in range(H-2):
        if A[i][0]!=-1:
            heapq.heappush(hq,[A[i][0],(i,0)])
    high=[[-1 for _ in range(W)] for _ in range(H)]
    while len(hq)!=0:
        h,p=heapq.heappop(hq)
        if high[p[0]][p[1]]==-1:
            high[p[0]][p[1]]=h
            for dx,dy in ds:
                x,y=p
                x+=dx
                y+=dy
                if 0<=x<H-2 and 0<=y<W and A[x][y]!=-1 and high[x][y]==-1:
                    heapq.heappush(hq,[h+A[x][y],(x,y)])
    return high

H,W=map(int,input().split())
A=[]
for i in range(H-2):
    A.append(list(map(int,input().split())))
dist=daiku()
ans=10**12
for i in range(H-2):
    if dist[i][-1]!=-1:
        ans=min(ans,dist[i][-1])
if ans>=10**12:
    print(-1)
else:
    print(ans)
0