結果

問題 No.1638 Robot Maze
ユーザー momoyuumomoyuu
提出日時 2022-08-03 01:14:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 77,704 KB
最終ジャッジ日時 2024-07-23 19:28:13
合計ジャッジ時間 5,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,892 KB
testcase_01 AC 39 ms
53,336 KB
testcase_02 AC 39 ms
52,860 KB
testcase_03 AC 84 ms
76,712 KB
testcase_04 AC 39 ms
54,692 KB
testcase_05 AC 40 ms
53,256 KB
testcase_06 AC 39 ms
53,408 KB
testcase_07 AC 40 ms
53,668 KB
testcase_08 AC 40 ms
53,196 KB
testcase_09 AC 40 ms
53,708 KB
testcase_10 AC 39 ms
53,632 KB
testcase_11 AC 40 ms
53,252 KB
testcase_12 AC 38 ms
52,816 KB
testcase_13 AC 38 ms
53,944 KB
testcase_14 AC 74 ms
73,724 KB
testcase_15 AC 74 ms
74,628 KB
testcase_16 AC 74 ms
73,376 KB
testcase_17 AC 87 ms
77,144 KB
testcase_18 AC 45 ms
59,836 KB
testcase_19 AC 72 ms
72,896 KB
testcase_20 AC 73 ms
73,316 KB
testcase_21 AC 55 ms
65,676 KB
testcase_22 AC 56 ms
66,568 KB
testcase_23 AC 56 ms
66,624 KB
testcase_24 AC 56 ms
67,016 KB
testcase_25 AC 56 ms
66,036 KB
testcase_26 AC 58 ms
68,256 KB
testcase_27 AC 58 ms
68,484 KB
testcase_28 AC 59 ms
70,144 KB
testcase_29 AC 58 ms
69,356 KB
testcase_30 AC 40 ms
54,464 KB
testcase_31 AC 40 ms
54,448 KB
testcase_32 AC 90 ms
77,276 KB
testcase_33 AC 106 ms
77,356 KB
testcase_34 AC 89 ms
77,512 KB
testcase_35 AC 112 ms
77,452 KB
testcase_36 AC 101 ms
77,440 KB
testcase_37 AC 94 ms
77,404 KB
testcase_38 AC 43 ms
59,296 KB
testcase_39 AC 99 ms
77,064 KB
testcase_40 AC 109 ms
77,104 KB
testcase_41 AC 101 ms
77,348 KB
testcase_42 AC 90 ms
77,176 KB
testcase_43 AC 132 ms
77,448 KB
testcase_44 AC 124 ms
77,704 KB
testcase_45 AC 93 ms
77,248 KB
testcase_46 AC 93 ms
77,216 KB
testcase_47 AC 98 ms
77,144 KB
testcase_48 AC 105 ms
77,160 KB
testcase_49 AC 99 ms
77,304 KB
testcase_50 AC 113 ms
77,308 KB
testcase_51 AC 111 ms
77,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
U,D,R,L,K,P = map(int,input().split())
cost = [U,D,R,L]
move = ((-1,0),(1,0),(0,1),(0,-1))
def f(n):
    return int(n)-1
    
xs,ys,xt,yt = map(f,input().split())
C = [list(input()) for _ in range(H)]

import heapq
que = []
que.append((0,xs,ys))
inf = float("inf")
d = [[inf for _ in range(W)] for _ in range(H)]
d[xs][ys] = 0
need = inf
while len(que) != 0:
    n,i,j = heapq.heappop(que)
    if d[i][j] < n:
        continue
    if i == xt and j == yt:
        need = d[i][j]
        break
    for k in range(4):
        a,b = move[k]
        ni,nj = i + a , j + b
        if ni < 0 or ni >= H or nj < 0 or nj >= W:
            continue
        if C[ni][nj] == "#":
            continue
        next = d[i][j] + cost[k]
        if C[ni][nj] == "@":
            next += P
        if d[ni][nj] <= next:
            continue
        d[ni][nj] = next
        heapq.heappush(que,(next,ni,nj))

if need <= K:
    print("Yes")
else:
    print("No")



0