結果
問題 |
No.1638 Robot Maze
|
ユーザー |
![]() |
提出日時 | 2021-08-06 22:48:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 740 bytes |
コンパイル時間 | 1,133 ms |
コンパイル使用メモリ | 82,020 KB |
実行使用メモリ | 77,256 KB |
最終ジャッジ日時 | 2024-09-17 03:01:34 |
合計ジャッジ時間 | 6,009 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 47 WA * 2 |
ソースコード
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,d,l,u] dx = [1,0,-1,0] dy = [0,1,0,-1] INF = 10**18 dist = [[INF]*w for _ in range(h)] from heapq import * q = [(0,sx,sy)] while q: dv,x,y = heappop(q) if dist[x][y] < dv: continue 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 = dv + C[i] if b[nx][ny] == "@": cost += p if cost < dist[nx][ny]: heappush(q, (cost,nx,ny)) dist[nx][ny] = cost print("Yes" if dist[gx][gy] <= k else "No")