結果

問題 No.1638 Robot Maze
ユーザー wolgnikwolgnik
提出日時 2021-08-06 21:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 1,240 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-11-08 10:28:31
合計ジャッジ時間 7,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,736 KB
testcase_01 AC 45 ms
52,864 KB
testcase_02 AC 45 ms
52,352 KB
testcase_03 AC 124 ms
79,616 KB
testcase_04 AC 52 ms
53,888 KB
testcase_05 AC 48 ms
53,376 KB
testcase_06 AC 47 ms
53,376 KB
testcase_07 AC 48 ms
53,504 KB
testcase_08 AC 47 ms
53,376 KB
testcase_09 AC 48 ms
53,248 KB
testcase_10 AC 47 ms
53,760 KB
testcase_11 AC 47 ms
53,376 KB
testcase_12 AC 48 ms
53,504 KB
testcase_13 AC 47 ms
53,120 KB
testcase_14 AC 138 ms
79,104 KB
testcase_15 AC 117 ms
78,208 KB
testcase_16 AC 118 ms
78,360 KB
testcase_17 AC 120 ms
77,984 KB
testcase_18 AC 71 ms
67,584 KB
testcase_19 AC 116 ms
78,144 KB
testcase_20 AC 116 ms
77,952 KB
testcase_21 AC 84 ms
71,936 KB
testcase_22 AC 84 ms
71,936 KB
testcase_23 AC 83 ms
72,064 KB
testcase_24 AC 82 ms
71,680 KB
testcase_25 AC 84 ms
72,064 KB
testcase_26 AC 95 ms
77,696 KB
testcase_27 AC 96 ms
77,952 KB
testcase_28 AC 96 ms
77,952 KB
testcase_29 AC 95 ms
78,080 KB
testcase_30 AC 45 ms
52,608 KB
testcase_31 AC 45 ms
52,480 KB
testcase_32 AC 161 ms
79,488 KB
testcase_33 AC 160 ms
79,488 KB
testcase_34 AC 152 ms
79,624 KB
testcase_35 AC 171 ms
79,616 KB
testcase_36 AC 156 ms
79,616 KB
testcase_37 AC 154 ms
79,360 KB
testcase_38 AC 168 ms
79,632 KB
testcase_39 AC 161 ms
79,744 KB
testcase_40 AC 152 ms
79,616 KB
testcase_41 AC 175 ms
79,872 KB
testcase_42 AC 165 ms
79,616 KB
testcase_43 AC 192 ms
79,840 KB
testcase_44 AC 160 ms
79,616 KB
testcase_45 AC 179 ms
79,744 KB
testcase_46 AC 152 ms
79,744 KB
testcase_47 AC 146 ms
79,668 KB
testcase_48 AC 152 ms
79,616 KB
testcase_49 AC 163 ms
79,424 KB
testcase_50 AC 165 ms
79,784 KB
testcase_51 AC 167 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
H, W = map(int, input().split())
U, D, R, L, K, P = map(int, input().split())
sy, sx, gy, gx = map(lambda x: int(x) - 1, input().split())
a = [list(input())[: -1] for _ in range(H)]

e = [[] for _ in range(H * W)]
d = [-1, 0, 1, 0]
dc = [U, R, D, L]
for i in range(H):
  for j in range(W):
    if a[i][j] == "#": continue
    for k in range(4):
      u = i + d[k]
      v = j + d[~k]
      if u in range(H) and v in range(W):
        if a[u][v] == ".": e[i * W + j].append((u * W + v, dc[k]))
        if a[u][v] == "@": e[i * W + j].append((u * W + v, dc[k] + P))

import heapq
hpush = heapq.heappush
hpop = heapq.heappop
class dijkstra:
  def __init__(self, n, e):
    self.e = e
    self.n = n
  def path(self, s):
    d = [float("inf")] * (self.n + 1)
    vis = [0] * (self.n + 1)
    d[s] = 0
    h = [s]
    while len(h):
      v = hpop(h)
      v1 = v % (10 ** 6)
      v0 = v // (10 ** 6)
      if vis[v1]: continue
      vis[v1] = 1
      for p in self.e[v1]:
        d[p[0]] = min(d[p[0]], d[v1] + p[1])
        if vis[p[0]]: continue
        hpush(h, d[p[0]] * (10 ** 6) + p[0])
    return d

dij = dijkstra(H * W, e)
if dij.path(sy * W + sx)[gy * W + gx] <= K: print("Yes")
else: print("No")
0