結果

問題 No.2328 Build Walls
ユーザー navel_tosnavel_tos
提出日時 2023-05-29 19:27:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 915 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 126,764 KB
最終ジャッジ日時 2024-06-08 19:23:20
合計ジャッジ時間 22,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,368 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 40 ms
52,992 KB
testcase_07 AC 42 ms
53,120 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 41 ms
52,736 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 164 ms
82,432 KB
testcase_14 AC 1,113 ms
95,412 KB
testcase_15 AC 547 ms
81,864 KB
testcase_16 AC 148 ms
77,900 KB
testcase_17 AC 374 ms
81,108 KB
testcase_18 AC 107 ms
76,516 KB
testcase_19 AC 58 ms
67,072 KB
testcase_20 AC 144 ms
77,440 KB
testcase_21 AC 87 ms
77,056 KB
testcase_22 AC 2,008 ms
126,764 KB
testcase_23 AC 1,834 ms
101,408 KB
testcase_24 AC 1,594 ms
97,520 KB
testcase_25 AC 1,831 ms
100,992 KB
testcase_26 AC 945 ms
91,204 KB
testcase_27 AC 1,401 ms
94,540 KB
testcase_28 AC 101 ms
80,256 KB
testcase_29 AC 1,904 ms
102,944 KB
testcase_30 AC 187 ms
88,064 KB
testcase_31 AC 164 ms
87,680 KB
testcase_32 AC 1,338 ms
94,532 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#MMA Contest 015 G

'''
DPみを感じる。こちらのほうが解きやすい・・・のか?
単に状態をもったDPをしたらTLEするに決まっている。

大胆予想: 左から右に王将の要領で移動する。右端にたどり着く最小コストを求めよ。
'''
import heapq as hq
f=lambda:list(map(int,input().split()))

H,W=f(); A=[[-1]*W]+[f() for _ in range(H-2)]+[[-1]*W]
Q=[]; cost=[[2*10**18]*W for _ in range(H)]
for h in range(1,H-1): hq.heappush(Q,(A[h][0],h,0)) if A[h][0]>=0 else None

while Q:
    dist,h,w=hq.heappop(Q)
    if dist>=cost[h][w]: continue
    cost[h][w]=dist
    for x,y in [(-1,0),(1,0),(0,-1),(0,1),(-1,-1),(-1,1),(1,-1),(1,1)]:
        if 0<=h+x<H and 0<=w+y<W and A[h+x][w+y]>=0:
            if cost[h+x][w+y]>dist+A[h+x][w+y]: hq.heappush(Q,(dist+A[h+x][w+y],h+x,w+y))
ans=min(cost[h][-1] for h in range(H))
print(ans) if ans<2*10**18 else print(-1)
0