結果

問題 No.1638 Robot Maze
ユーザー ThetaTheta
提出日時 2024-04-16 18:51:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,264 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 78,552 KB
最終ジャッジ日時 2024-10-07 19:15:48
合計ジャッジ時間 6,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,488 KB
testcase_01 AC 37 ms
53,344 KB
testcase_02 AC 35 ms
52,776 KB
testcase_03 AC 94 ms
76,972 KB
testcase_04 AC 38 ms
54,000 KB
testcase_05 AC 40 ms
54,068 KB
testcase_06 AC 37 ms
53,232 KB
testcase_07 AC 38 ms
54,348 KB
testcase_08 AC 37 ms
53,484 KB
testcase_09 AC 39 ms
53,808 KB
testcase_10 AC 39 ms
53,356 KB
testcase_11 AC 40 ms
54,828 KB
testcase_12 AC 40 ms
53,524 KB
testcase_13 AC 40 ms
53,924 KB
testcase_14 AC 102 ms
76,964 KB
testcase_15 AC 102 ms
76,976 KB
testcase_16 AC 102 ms
77,192 KB
testcase_17 AC 99 ms
76,820 KB
testcase_18 AC 41 ms
60,900 KB
testcase_19 AC 105 ms
76,764 KB
testcase_20 AC 102 ms
77,112 KB
testcase_21 AC 61 ms
67,872 KB
testcase_22 AC 58 ms
68,896 KB
testcase_23 AC 58 ms
69,456 KB
testcase_24 AC 58 ms
68,224 KB
testcase_25 AC 60 ms
69,180 KB
testcase_26 AC 67 ms
72,892 KB
testcase_27 AC 68 ms
72,592 KB
testcase_28 AC 72 ms
73,952 KB
testcase_29 AC 72 ms
73,640 KB
testcase_30 AC 39 ms
54,256 KB
testcase_31 AC 38 ms
53,320 KB
testcase_32 AC 114 ms
76,868 KB
testcase_33 AC 129 ms
77,968 KB
testcase_34 AC 102 ms
77,280 KB
testcase_35 AC 121 ms
77,476 KB
testcase_36 AC 125 ms
77,492 KB
testcase_37 AC 119 ms
77,188 KB
testcase_38 AC 110 ms
77,000 KB
testcase_39 AC 113 ms
77,160 KB
testcase_40 AC 130 ms
77,616 KB
testcase_41 AC 117 ms
77,188 KB
testcase_42 AC 131 ms
77,996 KB
testcase_43 AC 165 ms
77,880 KB
testcase_44 AC 175 ms
78,552 KB
testcase_45 AC 164 ms
78,492 KB
testcase_46 AC 124 ms
76,940 KB
testcase_47 AC 111 ms
77,004 KB
testcase_48 AC 120 ms
77,088 KB
testcase_49 AC 115 ms
77,124 KB
testcase_50 AC 125 ms
77,588 KB
testcase_51 AC 159 ms
77,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
from math import inf
DIJ = ((0, 1), (1, 0), (0, -1), (-1, 0))


def main():
    H, W = map(int, input().split())
    U, D, R, L, K, P = map(int, input().split())
    move_costs = (R, D, L, U)
    xs, ys, xt, yt = map(lambda n: int(n) - 1, input().split())
    board = [list(input()) for _ in range(H)]

    cost = [[inf for _ in range(W)] for _ in range(H)]
    cost[xs][ys] = 0
    queue = [(0, (xs, ys))]
    while queue:
        c_d, c_pos = heappop(queue)
        if c_d > cost[c_pos[0]][c_pos[1]]:
            continue
        for dij, m_cost in zip(DIJ, move_costs):
            n_pos = (c_pos[0] + dij[0], c_pos[1] + dij[1])
            if not (0 <= n_pos[0] < H and 0 <= n_pos[1] < W):
                continue
            if board[n_pos[0]][n_pos[1]] == "#":
                continue
            broken_cost = 0
            if board[n_pos[0]][n_pos[1]] == "@":
                broken_cost = P

            if cost[n_pos[0]][n_pos[1]] > c_d + m_cost + broken_cost:
                cost[n_pos[0]][n_pos[1]] = c_d + m_cost + broken_cost
                heappush(queue, (cost[n_pos[0]][n_pos[1]], n_pos))

    if cost[xt][yt] <= K:
        print("Yes")
    else:
        print("No")


if __name__ == "__main__":
    main()
0