結果

問題 No.2328 Build Walls
ユーザー Seed57_cashSeed57_cash
提出日時 2023-04-22 18:38:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,016 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 47,104 KB
最終ジャッジ日時 2024-04-24 21:31:59
合計ジャッジ時間 13,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 170 ms
19,584 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 47 ms
11,904 KB
testcase_20 WA -
testcase_21 AC 118 ms
16,640 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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, ([i][0], i, 0))

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

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