結果

問題 No.1638 Robot Maze
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-08-06 21:46:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-09-17 01:40:09
合計ジャッジ時間 5,708 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,756 KB
testcase_01 AC 41 ms
54,080 KB
testcase_02 AC 40 ms
52,860 KB
testcase_03 AC 81 ms
76,112 KB
testcase_04 AC 42 ms
53,488 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 42 ms
53,032 KB
testcase_07 AC 40 ms
53,160 KB
testcase_08 AC 41 ms
52,872 KB
testcase_09 AC 41 ms
53,220 KB
testcase_10 AC 41 ms
54,336 KB
testcase_11 AC 41 ms
53,100 KB
testcase_12 AC 41 ms
53,924 KB
testcase_13 AC 41 ms
54,544 KB
testcase_14 AC 90 ms
76,404 KB
testcase_15 AC 72 ms
73,556 KB
testcase_16 AC 72 ms
73,696 KB
testcase_17 AC 93 ms
76,496 KB
testcase_18 AC 41 ms
54,272 KB
testcase_19 AC 71 ms
73,164 KB
testcase_20 AC 71 ms
73,604 KB
testcase_21 AC 55 ms
65,988 KB
testcase_22 AC 55 ms
67,464 KB
testcase_23 AC 54 ms
66,116 KB
testcase_24 AC 55 ms
67,252 KB
testcase_25 AC 54 ms
66,636 KB
testcase_26 AC 59 ms
70,668 KB
testcase_27 AC 61 ms
71,308 KB
testcase_28 AC 60 ms
71,696 KB
testcase_29 AC 62 ms
69,988 KB
testcase_30 AC 40 ms
53,404 KB
testcase_31 AC 39 ms
53,152 KB
testcase_32 AC 99 ms
76,824 KB
testcase_33 AC 113 ms
76,456 KB
testcase_34 AC 104 ms
76,408 KB
testcase_35 AC 113 ms
76,500 KB
testcase_36 AC 111 ms
76,804 KB
testcase_37 AC 96 ms
76,884 KB
testcase_38 AC 107 ms
76,548 KB
testcase_39 AC 108 ms
76,152 KB
testcase_40 AC 113 ms
76,352 KB
testcase_41 AC 120 ms
76,296 KB
testcase_42 AC 113 ms
76,356 KB
testcase_43 AC 136 ms
77,068 KB
testcase_44 AC 141 ms
77,212 KB
testcase_45 AC 137 ms
77,160 KB
testcase_46 AC 110 ms
76,568 KB
testcase_47 AC 102 ms
76,548 KB
testcase_48 AC 114 ms
76,500 KB
testcase_49 AC 98 ms
76,508 KB
testcase_50 AC 123 ms
76,764 KB
testcase_51 AC 131 ms
77,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import heapq

H,W = map(int,stdin.readline().split())

U,D,R,L,K,P = map(int,stdin.readline().split())

xs,ys,xg,yg = map(int,stdin.readline().split())
xs -= 1
ys -= 1
xg -= 1
yg -= 1

C = [stdin.readline()[:-1] for i in range(H)]

d = [[float("inf")] * W for i in range(H)]

q = [(0,xs,ys)]
d[xs][ys] = 0

while q:

    sc,x,y = heapq.heappop(q)

    if d[x][y] != sc:
        continue

    for nx,ny,cost in [(x-1,y,U),(x+1,y,D),(x,y-1,L),(x,y+1,R)]:

        if not (0 <= nx < H and 0 <= ny < W):
            continue

        if C[nx][ny] == "#":
            continue

        if C[nx][ny] == "@":
            cost += P

        if d[nx][ny] > sc + cost:
            d[nx][ny] = sc + cost
            heapq.heappush(q,(d[nx][ny],nx,ny))

if d[xg][yg] <= K:
    print ("Yes")
else:
    print ("No")
0