結果

問題 No.1638 Robot Maze
ユーザー 👑 rin204rin204
提出日時 2022-01-26 16:05:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 77,328 KB
最終ジャッジ日時 2024-06-02 10:22:08
合計ジャッジ時間 5,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 38 ms
52,580 KB
testcase_03 AC 83 ms
76,160 KB
testcase_04 AC 39 ms
53,248 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 39 ms
52,864 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 40 ms
52,736 KB
testcase_09 AC 39 ms
52,864 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 39 ms
52,864 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 39 ms
52,736 KB
testcase_14 AC 93 ms
76,416 KB
testcase_15 AC 73 ms
73,984 KB
testcase_16 AC 75 ms
73,472 KB
testcase_17 AC 85 ms
76,288 KB
testcase_18 AC 42 ms
53,504 KB
testcase_19 AC 71 ms
73,472 KB
testcase_20 AC 73 ms
73,344 KB
testcase_21 AC 50 ms
63,104 KB
testcase_22 AC 50 ms
63,744 KB
testcase_23 AC 52 ms
63,232 KB
testcase_24 AC 51 ms
63,232 KB
testcase_25 AC 52 ms
63,232 KB
testcase_26 AC 58 ms
67,072 KB
testcase_27 AC 58 ms
67,328 KB
testcase_28 AC 58 ms
67,840 KB
testcase_29 AC 57 ms
67,968 KB
testcase_30 AC 38 ms
52,944 KB
testcase_31 AC 39 ms
52,480 KB
testcase_32 AC 98 ms
76,288 KB
testcase_33 AC 104 ms
76,160 KB
testcase_34 AC 105 ms
76,928 KB
testcase_35 AC 101 ms
76,672 KB
testcase_36 AC 104 ms
76,564 KB
testcase_37 AC 98 ms
76,396 KB
testcase_38 AC 100 ms
76,416 KB
testcase_39 AC 107 ms
76,800 KB
testcase_40 AC 109 ms
76,596 KB
testcase_41 AC 110 ms
76,848 KB
testcase_42 AC 105 ms
76,288 KB
testcase_43 AC 125 ms
77,328 KB
testcase_44 AC 109 ms
76,300 KB
testcase_45 AC 119 ms
76,792 KB
testcase_46 AC 106 ms
76,692 KB
testcase_47 AC 100 ms
76,288 KB
testcase_48 AC 105 ms
76,416 KB
testcase_49 AC 98 ms
76,544 KB
testcase_50 AC 103 ms
76,668 KB
testcase_51 AC 116 ms
76,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

h, w = map(int, input().split())
u, d, r, l, k, p = map(int, input().split())
xs, ys, xt, yt = map(int, input().split())
C = [input() for _ in range(h)]

xs -= 1
ys -= 1
xt -= 1
yt -= 1
directions = [(-1, 0, u), (1, 0, d), (0, 1, r), (0, -1, l)]

inf = 1 << 60
dist = [[inf] * w for _ in range(h)]
hq = [(0, xs, ys)]
dist[xs][ys] = 0
while hq:
    d, x, y = heappop(hq)
    if d > dist[x][y]:
        continue
    for dx, dy, dd in directions:
        nx = x + dx
        ny = y + dy
        nd = d + dd
        if nx == -1 or ny == -1 or nx == h or ny == w:
            continue
        if C[nx][ny] == "#":
            continue
        if C[nx][ny] == "@":
            nd += p
        if dist[nx][ny] > nd:
            dist[nx][ny] = nd
            heappush(hq, (nd, nx, ny))
        
if dist[xt][yt] <= k:
    print("Yes")
else:
    print("No")
0