結果

問題 No.1638 Robot Maze
ユーザー mkawa2mkawa2
提出日時 2021-08-06 21:51:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 1,267 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 77,924 KB
最終ジャッジ日時 2024-09-17 01:46:14
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,736 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 44 ms
52,864 KB
testcase_03 AC 141 ms
77,668 KB
testcase_04 AC 44 ms
52,480 KB
testcase_05 AC 45 ms
52,736 KB
testcase_06 AC 44 ms
53,504 KB
testcase_07 AC 48 ms
53,504 KB
testcase_08 AC 44 ms
52,480 KB
testcase_09 AC 44 ms
52,608 KB
testcase_10 AC 44 ms
52,352 KB
testcase_11 AC 44 ms
52,864 KB
testcase_12 AC 44 ms
53,376 KB
testcase_13 AC 45 ms
52,224 KB
testcase_14 AC 86 ms
73,344 KB
testcase_15 AC 114 ms
76,852 KB
testcase_16 AC 114 ms
76,804 KB
testcase_17 AC 117 ms
76,456 KB
testcase_18 AC 50 ms
60,416 KB
testcase_19 AC 109 ms
76,424 KB
testcase_20 AC 112 ms
76,748 KB
testcase_21 AC 75 ms
70,528 KB
testcase_22 AC 74 ms
70,656 KB
testcase_23 AC 73 ms
70,656 KB
testcase_24 AC 74 ms
70,144 KB
testcase_25 AC 76 ms
70,144 KB
testcase_26 AC 86 ms
76,288 KB
testcase_27 AC 86 ms
75,776 KB
testcase_28 AC 86 ms
76,160 KB
testcase_29 AC 86 ms
76,544 KB
testcase_30 AC 43 ms
52,608 KB
testcase_31 AC 44 ms
52,992 KB
testcase_32 AC 127 ms
76,544 KB
testcase_33 AC 135 ms
77,388 KB
testcase_34 AC 110 ms
76,560 KB
testcase_35 AC 162 ms
77,864 KB
testcase_36 AC 113 ms
76,800 KB
testcase_37 AC 152 ms
77,028 KB
testcase_38 AC 49 ms
59,520 KB
testcase_39 AC 137 ms
77,000 KB
testcase_40 AC 142 ms
76,904 KB
testcase_41 AC 156 ms
77,288 KB
testcase_42 AC 97 ms
76,724 KB
testcase_43 AC 192 ms
77,924 KB
testcase_44 AC 153 ms
77,172 KB
testcase_45 AC 101 ms
76,416 KB
testcase_46 AC 123 ms
76,584 KB
testcase_47 AC 149 ms
77,284 KB
testcase_48 AC 126 ms
76,444 KB
testcase_49 AC 164 ms
77,388 KB
testcase_50 AC 145 ms
77,596 KB
testcase_51 AC 141 ms
77,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

from heapq import *

t = ".@#"

h, w = LI()
u, d, r, l, k, p = LI()
si, sj, gi, gj = LI1()
sij = si*w+sj
gij = gi*w+gj
cc = [t.index(c) for _ in range(h) for c in SI()]

def push(ij, nc):
    if cc[ij] == 2: return
    if cc[ij] == 1: nc += p
    if nc >= dist[ij]: return
    dist[ij] = nc
    heappush(hp, (nc, ij))

dist = [inf]*h*w
dist[sij] = 0
hp = [(0, sij)]
while hp:
    c, ij = heappop(hp)
    if ij == gij: break
    if c > dist[ij]: continue
    i, j = divmod(ij, w)
    if i-1 >= 0: push(ij-w, c+u)
    if i+1 < h: push(ij+w, c+d)
    if j-1 >= 0: push(ij-1, c+l)
    if j+1 < w: push(ij+1, c+r)

print("Yes" if dist[gij] <= k else "No")
0