結果

問題 No.2328 Build Walls
ユーザー nikoro256nikoro256
提出日時 2023-05-28 15:49:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 880 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 166,656 KB
最終ジャッジ日時 2024-12-27 08:58:46
合計ジャッジ時間 31,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,984 KB
testcase_01 AC 50 ms
57,856 KB
testcase_02 AC 47 ms
57,600 KB
testcase_03 AC 45 ms
52,864 KB
testcase_04 AC 48 ms
52,608 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 45 ms
52,480 KB
testcase_07 AC 47 ms
53,120 KB
testcase_08 AC 46 ms
52,864 KB
testcase_09 AC 45 ms
52,224 KB
testcase_10 AC 47 ms
52,608 KB
testcase_11 AC 45 ms
52,224 KB
testcase_12 AC 46 ms
52,224 KB
testcase_13 AC 174 ms
83,072 KB
testcase_14 AC 1,507 ms
102,144 KB
testcase_15 AC 689 ms
82,912 KB
testcase_16 AC 168 ms
77,184 KB
testcase_17 AC 425 ms
81,160 KB
testcase_18 AC 135 ms
76,832 KB
testcase_19 AC 63 ms
66,560 KB
testcase_20 AC 153 ms
76,448 KB
testcase_21 AC 94 ms
79,360 KB
testcase_22 AC 2,782 ms
152,984 KB
testcase_23 AC 2,314 ms
106,608 KB
testcase_24 AC 1,894 ms
100,576 KB
testcase_25 AC 2,295 ms
104,828 KB
testcase_26 AC 1,169 ms
91,724 KB
testcase_27 AC 1,709 ms
97,664 KB
testcase_28 AC 108 ms
85,632 KB
testcase_29 AC 2,363 ms
108,204 KB
testcase_30 AC 222 ms
88,392 KB
testcase_31 AC 172 ms
87,424 KB
testcase_32 AC 1,618 ms
95,972 KB
testcase_33 TLE -
testcase_34 AC 232 ms
87,284 KB
testcase_35 TLE -
testcase_36 AC 45 ms
166,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input=sys.stdin.readline
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*H)]
    while len(hq)!=0:
        h,p=heapq.heappop(hq)
        if high[p[0]*W+p[1]]==-1:
            high[p[0]*W+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*W+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*W+W-1]!=-1:
        ans=min(ans,dist[i*W+W-1])
if ans>=10**12:
    print(-1)
else:
    print(ans)
0