結果

問題 No.2328 Build Walls
ユーザー masa_aamasa_aa
提出日時 2023-05-28 15:09:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,449 ms / 3,000 ms
コード長 729 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 127,688 KB
最終ジャッジ日時 2024-06-08 07:08:11
合計ジャッジ時間 13,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,132 KB
testcase_01 AC 39 ms
54,304 KB
testcase_02 AC 38 ms
55,196 KB
testcase_03 AC 40 ms
54,724 KB
testcase_04 AC 39 ms
54,720 KB
testcase_05 AC 38 ms
53,996 KB
testcase_06 AC 38 ms
55,820 KB
testcase_07 AC 40 ms
54,384 KB
testcase_08 AC 39 ms
55,292 KB
testcase_09 AC 40 ms
54,808 KB
testcase_10 AC 39 ms
55,540 KB
testcase_11 AC 39 ms
55,060 KB
testcase_12 AC 40 ms
54,868 KB
testcase_13 AC 105 ms
79,360 KB
testcase_14 AC 267 ms
84,984 KB
testcase_15 AC 201 ms
82,024 KB
testcase_16 AC 111 ms
77,868 KB
testcase_17 AC 302 ms
85,980 KB
testcase_18 AC 60 ms
70,744 KB
testcase_19 AC 49 ms
69,280 KB
testcase_20 AC 75 ms
76,780 KB
testcase_21 AC 74 ms
78,408 KB
testcase_22 AC 310 ms
88,808 KB
testcase_23 AC 1,243 ms
120,416 KB
testcase_24 AC 1,125 ms
119,012 KB
testcase_25 AC 1,449 ms
127,688 KB
testcase_26 AC 1,026 ms
113,316 KB
testcase_27 AC 1,200 ms
113,324 KB
testcase_28 AC 101 ms
81,860 KB
testcase_29 AC 1,367 ms
117,968 KB
testcase_30 AC 125 ms
82,420 KB
testcase_31 AC 123 ms
82,680 KB
testcase_32 AC 1,139 ms
118,968 KB
testcase_33 AC 264 ms
92,496 KB
testcase_34 AC 124 ms
82,528 KB
testcase_35 AC 274 ms
91,304 KB
testcase_36 AC 41 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

h, w = map(int, input().split())
h -= 2
a = [list(map(int, input().split())) + [-1] for _ in range(h)] + [[-1] * (w + 1)]
INF = 10**18
dp = [[INF] * (w + 1) for _ in range(h)] + [[INF] * (w + 1)]
que = deque()
for i in range(h):
    if a[i][0] == -1:
        continue
    dp[i][0] = a[i][0]
    que.append((i, 0))

while que:
    x, y = que.popleft()
    for i in range(-1, 2):
        for j in range(-1, 2):
            sx = x + i
            sy = y + j
            if a[sx][sy] != -1 and dp[sx][sy] > dp[x][y] + a[sx][sy]:
                dp[sx][sy] = dp[x][y] + a[sx][sy]
                que.append((sx, sy))


ans = min(v[-2] for v in dp)
print(ans if ans < INF else -1)
# print(*dp, sep="\n")
0