結果

問題 No.1638 Robot Maze
ユーザー H3PO4H3PO4
提出日時 2023-11-05 09:41:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-25 22:23:21
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 79 ms
11,136 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 28 ms
11,008 KB
testcase_14 AC 53 ms
11,136 KB
testcase_15 AC 42 ms
11,008 KB
testcase_16 AC 42 ms
11,008 KB
testcase_17 AC 42 ms
11,008 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 42 ms
11,008 KB
testcase_20 AC 41 ms
11,008 KB
testcase_21 AC 48 ms
11,008 KB
testcase_22 AC 46 ms
11,008 KB
testcase_23 AC 49 ms
11,008 KB
testcase_24 AC 51 ms
11,136 KB
testcase_25 AC 51 ms
11,136 KB
testcase_26 AC 47 ms
11,008 KB
testcase_27 AC 46 ms
11,008 KB
testcase_28 AC 46 ms
11,008 KB
testcase_29 AC 46 ms
11,008 KB
testcase_30 AC 29 ms
10,880 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 60 ms
11,136 KB
testcase_33 AC 63 ms
11,136 KB
testcase_34 AC 70 ms
11,136 KB
testcase_35 AC 64 ms
11,136 KB
testcase_36 AC 72 ms
11,136 KB
testcase_37 AC 61 ms
11,136 KB
testcase_38 AC 60 ms
11,008 KB
testcase_39 AC 71 ms
11,136 KB
testcase_40 AC 62 ms
11,136 KB
testcase_41 AC 66 ms
11,136 KB
testcase_42 AC 66 ms
11,136 KB
testcase_43 AC 69 ms
11,136 KB
testcase_44 AC 67 ms
11,136 KB
testcase_45 AC 68 ms
11,136 KB
testcase_46 AC 69 ms
11,136 KB
testcase_47 AC 63 ms
11,136 KB
testcase_48 AC 73 ms
11,136 KB
testcase_49 AC 62 ms
11,136 KB
testcase_50 AC 67 ms
11,392 KB
testcase_51 AC 72 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

H, W = map(int, input().split())
U, D, R, L, K, P = map(int, input().split())
xs, ys, xt, yt = map(lambda x: int(x) - 1, input().split())
C = tuple(input() for _ in range(H))

INF = 10**18

dist = [[INF] * W for _ in range(H)]
dist[xs][ys] = 0
que = [(0, xs, ys)]
while que:
    c, x, y = heapq.heappop(que)
    if dist[x][y] < c:
        continue
    for dx, dy, cost in ((0, 1, R), (0, -1, L), (1, 0, D), (-1, 0, U)):
        nx, ny = x + dx, y + dy
        if 0 <= nx < H and 0 <= ny < W:
            if C[nx][ny] == "#":
                continue
            elif C[nx][ny] == "@":
                cost += P
            if dist[x][y] + cost < dist[nx][ny]:
                dist[nx][ny] = dist[x][y] + cost
                heapq.heappush(que, (dist[nx][ny], nx, ny))

print("Yes" if dist[xt][yt] <= K else "No")
0