結果

問題 No.34 砂漠の行商人
ユーザー tnodinotnodino
提出日時 2022-02-16 05:18:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 948 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-29 07:11:48
合計ジャッジ時間 2,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,072 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 50 ms
64,640 KB
testcase_03 AC 48 ms
63,744 KB
testcase_04 AC 58 ms
71,040 KB
testcase_05 AC 62 ms
73,728 KB
testcase_06 AC 57 ms
69,888 KB
testcase_07 AC 68 ms
76,288 KB
testcase_08 AC 72 ms
76,752 KB
testcase_09 AC 70 ms
76,288 KB
testcase_10 AC 88 ms
77,440 KB
testcase_11 AC 59 ms
72,320 KB
testcase_12 AC 57 ms
69,376 KB
testcase_13 AC 79 ms
76,544 KB
testcase_14 AC 81 ms
77,008 KB
testcase_15 AC 63 ms
70,272 KB
testcase_16 AC 58 ms
70,528 KB
testcase_17 AC 69 ms
76,288 KB
testcase_18 AC 51 ms
64,896 KB
testcase_19 AC 75 ms
76,416 KB
testcase_20 AC 75 ms
76,288 KB
testcase_21 AC 51 ms
66,048 KB
testcase_22 AC 71 ms
76,416 KB
testcase_23 AC 63 ms
73,856 KB
testcase_24 AC 74 ms
76,416 KB
testcase_25 AC 70 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def bfs(H, W, L, V, sx, sy, gx, gy):
    INF = 1<<32
    dx = [0, 0, -1, 1]
    dy = [-1, 1, 0, 0]
    Cost = [[INF] * W for _ in range(H)]
    Cost[sx][sy] = 0
    Queue = deque()
    Queue.append((sx, sy, 0))
    ret = INF
    while Queue:
        x,y,cnt = Queue.popleft()
        for i in range(len(dx)):
            nx,my = x + dx[i], y + dy[i]
            if nx < 0 or H <= nx or my < 0 or W <= my:
                continue
            if Cost[x][y] + L[nx][my] < Cost[nx][my] and Cost[x][y] + L[nx][my] < V:
                Cost[nx][my] = Cost[x][y] + L[nx][my]
                Queue.append((nx, my, cnt+1))
                if nx == gx and my == gy:
                    ret = min(ret, cnt+1)
    if ret == INF:
        ret = -1
    return ret
N,V,Sy,Sx,Gy,Gx = map(int,input().split())
Sx -= 1
Sy -= 1
Gx -= 1
Gy -= 1
L = [list(map(int,input().split())) for _ in range(N)]
print(bfs(N, N, L, V, Sx, Sy, Gx, Gy))
0