結果

問題 No.2328 Build Walls
ユーザー Seed57_cashSeed57_cash
提出日時 2023-05-02 15:58:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,604 ms / 3,000 ms
コード長 1,029 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 96,568 KB
最終ジャッジ日時 2024-11-21 06:03:52
合計ジャッジ時間 16,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,096 KB
testcase_01 AC 39 ms
53,092 KB
testcase_02 AC 38 ms
53,488 KB
testcase_03 AC 40 ms
54,060 KB
testcase_04 AC 41 ms
53,348 KB
testcase_05 AC 40 ms
53,784 KB
testcase_06 AC 39 ms
53,316 KB
testcase_07 AC 41 ms
54,628 KB
testcase_08 AC 40 ms
54,088 KB
testcase_09 AC 40 ms
54,264 KB
testcase_10 AC 39 ms
53,420 KB
testcase_11 AC 39 ms
53,612 KB
testcase_12 AC 39 ms
53,348 KB
testcase_13 AC 163 ms
82,540 KB
testcase_14 AC 666 ms
85,364 KB
testcase_15 AC 408 ms
81,068 KB
testcase_16 AC 171 ms
77,984 KB
testcase_17 AC 358 ms
81,392 KB
testcase_18 AC 121 ms
77,556 KB
testcase_19 AC 51 ms
67,944 KB
testcase_20 AC 163 ms
77,752 KB
testcase_21 AC 80 ms
76,880 KB
testcase_22 AC 1,034 ms
93,332 KB
testcase_23 AC 1,072 ms
92,672 KB
testcase_24 AC 888 ms
90,244 KB
testcase_25 AC 1,063 ms
91,904 KB
testcase_26 AC 626 ms
89,304 KB
testcase_27 AC 866 ms
90,592 KB
testcase_28 AC 103 ms
80,272 KB
testcase_29 AC 1,095 ms
91,832 KB
testcase_30 AC 200 ms
88,084 KB
testcase_31 AC 176 ms
88,148 KB
testcase_32 AC 860 ms
90,676 KB
testcase_33 AC 1,604 ms
96,568 KB
testcase_34 AC 250 ms
88,772 KB
testcase_35 AC 1,177 ms
92,372 KB
testcase_36 AC 40 ms
53,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h - 2)]

# 最小カットするのは面倒なので、左から右にpathを通して切る
distance = [[-1] * w for _ in range(h - 2)]
heap_queue = []

for i in range(h - 2):
    if a[i][0] >= 0:
        heappush(heap_queue, (a[i][0], i * w))

while len(heap_queue):
    d, ij0 = heappop(heap_queue)
    i0, j0 = ij0 // w, ij0 % w
    if distance[i0][j0] == -1:
        distance[i0][j0] = d
    else:
        continue
    
    # 8方向にpath
    for i1 in range(max(0, i0 - 1), min(h - 2, i0 + 2)):
        for j1 in range(max(0, j0 - 1), min(w, j0 + 2)):
            if i1 == i0 and j1 == j0:
                continue
            if a[i1][j1] >= 0 and distance[i1][j1] == -1:
                heappush(heap_queue, (distance[i0][j0] + a[i1][j1], i1* w + j1))

res_list = [distance[i][-1] for i in range(h - 2)]
if max(res_list) == -1:
    print(-1)
else:
    print(min([r for r in res_list if r >= 0]))
0