結果

問題 No.1638 Robot Maze
ユーザー qibqib
提出日時 2022-12-07 19:45:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,220 KB
最終ジャッジ日時 2024-10-14 00:20:27
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 120 ms
77,440 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 45 ms
52,736 KB
testcase_06 AC 43 ms
52,864 KB
testcase_07 AC 44 ms
52,736 KB
testcase_08 AC 43 ms
52,864 KB
testcase_09 AC 45 ms
53,504 KB
testcase_10 AC 44 ms
53,120 KB
testcase_11 AC 44 ms
52,864 KB
testcase_12 AC 45 ms
52,992 KB
testcase_13 AC 44 ms
52,864 KB
testcase_14 AC 110 ms
77,056 KB
testcase_15 AC 120 ms
78,080 KB
testcase_16 AC 119 ms
77,952 KB
testcase_17 AC 124 ms
78,336 KB
testcase_18 AC 58 ms
67,584 KB
testcase_19 AC 100 ms
77,056 KB
testcase_20 AC 100 ms
77,312 KB
testcase_21 AC 74 ms
73,600 KB
testcase_22 AC 76 ms
73,344 KB
testcase_23 AC 74 ms
73,216 KB
testcase_24 AC 74 ms
73,472 KB
testcase_25 AC 76 ms
73,472 KB
testcase_26 AC 102 ms
77,440 KB
testcase_27 AC 101 ms
77,568 KB
testcase_28 AC 108 ms
77,440 KB
testcase_29 AC 108 ms
77,568 KB
testcase_30 AC 43 ms
52,608 KB
testcase_31 AC 42 ms
52,352 KB
testcase_32 AC 118 ms
77,312 KB
testcase_33 AC 163 ms
78,336 KB
testcase_34 AC 130 ms
77,824 KB
testcase_35 AC 181 ms
79,132 KB
testcase_36 AC 138 ms
78,208 KB
testcase_37 AC 118 ms
77,440 KB
testcase_38 AC 123 ms
77,696 KB
testcase_39 AC 127 ms
77,696 KB
testcase_40 AC 181 ms
79,220 KB
testcase_41 AC 133 ms
78,208 KB
testcase_42 AC 143 ms
78,080 KB
testcase_43 AC 148 ms
77,824 KB
testcase_44 AC 152 ms
77,952 KB
testcase_45 AC 158 ms
78,336 KB
testcase_46 AC 137 ms
77,824 KB
testcase_47 AC 117 ms
77,312 KB
testcase_48 AC 142 ms
78,336 KB
testcase_49 AC 141 ms
77,696 KB
testcase_50 AC 145 ms
78,208 KB
testcase_51 AC 148 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

h, w = map(int, input().split())
u, d, r, l, k, p = map(int, input().split())
xs, ys, xt, yt = map(int, input().split())
xs -= 1
ys -= 1
xt -= 1
yt -= 1

c = [input() for _ in range(h)]
dist = [[[INF for _ in range(2)] for _ in range(w)] for _ in range(h)]
dist[xs][ys][0] = 0

dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
cost = [[d, d + p], [r, r + p], [u, u + p], [l, l + p]]

hp = [(0, xs, ys, 0)]
while len(hp) > 0:
  cd, cx, cy, ci = heapq.heappop(hp)
  if dist[cx][cy][ci] < cd:
    continue
  for d in range(4):
    nx = cx + dx[d]
    if nx < 0 or nx >= h:
      continue
    ny = cy + dy[d]
    if ny < 0 or ny >= w:
      continue
    if c[nx][ny] == '#':
      continue
    ni = 1 if c[nx][ny] == '@' else 0

    if dist[nx][ny][ni] > dist[cx][cy][ci] + cost[d][ni]:
      dist[nx][ny][ni] = dist[cx][cy][ci] + cost[d][ni]
      heapq.heappush(hp, (dist[nx][ny][ni], nx, ny, ni))

ans = "Yes" if dist[xt][yt][0] <= k else "No"
print(ans)
0