結果

問題 No.2328 Build Walls
ユーザー dangodango
提出日時 2023-06-13 21:31:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,277 ms / 3,000 ms
コード長 714 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 127,956 KB
最終ジャッジ日時 2024-06-22 07:50:14
合計ジャッジ時間 13,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,184 KB
testcase_01 AC 41 ms
55,548 KB
testcase_02 AC 35 ms
54,676 KB
testcase_03 AC 38 ms
54,448 KB
testcase_04 AC 38 ms
54,984 KB
testcase_05 AC 37 ms
55,396 KB
testcase_06 AC 36 ms
55,716 KB
testcase_07 AC 38 ms
54,560 KB
testcase_08 AC 37 ms
55,232 KB
testcase_09 AC 37 ms
54,128 KB
testcase_10 AC 37 ms
54,328 KB
testcase_11 AC 37 ms
55,548 KB
testcase_12 AC 36 ms
55,380 KB
testcase_13 AC 91 ms
79,288 KB
testcase_14 AC 238 ms
85,200 KB
testcase_15 AC 184 ms
82,256 KB
testcase_16 AC 94 ms
77,856 KB
testcase_17 AC 280 ms
85,812 KB
testcase_18 AC 55 ms
71,200 KB
testcase_19 AC 44 ms
69,404 KB
testcase_20 AC 68 ms
76,828 KB
testcase_21 AC 70 ms
78,288 KB
testcase_22 AC 285 ms
88,904 KB
testcase_23 AC 1,130 ms
120,476 KB
testcase_24 AC 1,033 ms
118,964 KB
testcase_25 AC 1,277 ms
127,956 KB
testcase_26 AC 977 ms
113,796 KB
testcase_27 AC 1,090 ms
113,300 KB
testcase_28 AC 86 ms
81,584 KB
testcase_29 AC 1,230 ms
117,796 KB
testcase_30 AC 112 ms
82,512 KB
testcase_31 AC 105 ms
82,364 KB
testcase_32 AC 1,104 ms
118,960 KB
testcase_33 AC 257 ms
92,800 KB
testcase_34 AC 131 ms
82,448 KB
testcase_35 AC 248 ms
91,364 KB
testcase_36 AC 36 ms
54,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
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 = collections.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))
print(min(v[-2] for v in dp) if min(v[-2] for v in dp) < INF else -1)
0