結果

問題 No.1638 Robot Maze
ユーザー convexineq
提出日時 2021-08-06 22:40:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 78,616 KB
最終ジャッジ日時 2024-09-17 02:49:42
合計ジャッジ時間 6,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 47 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
u,d,r,l,k,p = map(int,input().split())
sx,sy,gx,gy = map(int,input().split())
b = [input() for _ in range(h)]
sx -= 1
sy -= 1
gx -= 1
gy -= 1
C = [r,u,l,d]
dx = [1,0,-1,0]
dy = [0,1,0,-1]
INF = 10**18
dist = [[INF]*w for _ in range(h)]
#dist[sx][sy] = used[sx][sy] = 0
from heapq import *
q = [(0,sx,sy)]
ans = INF
while q:
    dv,x,y = heappop(q)
    if x==gx and y==gy:
        ans = min(ans,dv)
    if dist[x][y] <= dv: continue
    dist[x][y] = min(dist[x][y],dv)
    for i in range(4):
        nx = x + dx[i]
        ny = y + dy[i]
        if nx < 0 or nx >= h or ny < 0 or ny >= w or b[nx][ny] == "#": continue
        cost = C[i]
        if b[nx][ny] == "@":
            cost += p
        if dist[nx][ny] <= dv+cost: continue
        heappush(q, (dv+cost,nx,ny))
print("Yes" if ans <= k else "No")
0