結果

問題 No.1638 Robot Maze
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-06 22:43:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-17 02:55:10
合計ジャッジ時間 5,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,840 KB
testcase_01 AC 41 ms
52,876 KB
testcase_02 AC 36 ms
52,556 KB
testcase_03 AC 82 ms
76,144 KB
testcase_04 AC 38 ms
52,632 KB
testcase_05 AC 38 ms
53,684 KB
testcase_06 AC 39 ms
53,796 KB
testcase_07 AC 40 ms
53,148 KB
testcase_08 AC 41 ms
53,480 KB
testcase_09 AC 38 ms
53,280 KB
testcase_10 AC 38 ms
52,936 KB
testcase_11 AC 39 ms
53,292 KB
testcase_12 AC 39 ms
52,880 KB
testcase_13 AC 38 ms
52,812 KB
testcase_14 AC 87 ms
76,656 KB
testcase_15 AC 72 ms
72,116 KB
testcase_16 AC 74 ms
73,376 KB
testcase_17 AC 75 ms
74,232 KB
testcase_18 AC 39 ms
53,384 KB
testcase_19 AC 72 ms
72,588 KB
testcase_20 AC 68 ms
72,576 KB
testcase_21 AC 52 ms
63,896 KB
testcase_22 AC 51 ms
64,420 KB
testcase_23 AC 52 ms
64,980 KB
testcase_24 AC 53 ms
64,504 KB
testcase_25 AC 51 ms
64,320 KB
testcase_26 AC 60 ms
69,300 KB
testcase_27 AC 60 ms
70,448 KB
testcase_28 AC 60 ms
70,328 KB
testcase_29 AC 60 ms
69,680 KB
testcase_30 AC 39 ms
54,196 KB
testcase_31 AC 39 ms
53,432 KB
testcase_32 AC 93 ms
76,356 KB
testcase_33 AC 105 ms
76,848 KB
testcase_34 AC 93 ms
76,276 KB
testcase_35 AC 109 ms
76,368 KB
testcase_36 AC 105 ms
76,504 KB
testcase_37 AC 96 ms
76,456 KB
testcase_38 AC 97 ms
76,636 KB
testcase_39 AC 99 ms
76,704 KB
testcase_40 AC 104 ms
76,716 KB
testcase_41 AC 100 ms
76,636 KB
testcase_42 AC 117 ms
76,440 KB
testcase_43 AC 115 ms
76,868 KB
testcase_44 AC 118 ms
76,780 KB
testcase_45 AC 123 ms
77,184 KB
testcase_46 AC 99 ms
76,332 KB
testcase_47 AC 92 ms
76,364 KB
testcase_48 AC 108 ms
76,872 KB
testcase_49 AC 92 ms
76,484 KB
testcase_50 AC 109 ms
76,716 KB
testcase_51 AC 118 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)
inf = 10 ** 18

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 = [input().rstrip() for _ in range(H)]

dydx4 = ((0, 1, R), (1, 0, D), (-1, 0, U), (0, -1, L))
dist = [[inf] * W for _ in range(H)]
dist[xs][ys] = 0

que = [(0, xs, ys)]
while que:
    ds, x, y = heapq.heappop(que)
    if dist[x][y] < ds:
        continue
    for dx, dy, dt in dydx4:
        nx = x + dx
        ny = y + dy
        if 0 <= nx < H and 0 <= ny < W and C[nx][ny] != "#":
            cost = ds + dt + P * (C[nx][ny] == "@")
            if dist[nx][ny] > cost:
                dist[nx][ny] = cost
                heapq.heappush(que, (cost, nx, ny))

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