結果

問題 No.1638 Robot Maze
ユーザー convexineqconvexineq
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,120 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 100 ms
76,288 KB
testcase_04 AC 36 ms
52,992 KB
testcase_05 AC 41 ms
53,288 KB
testcase_06 AC 37 ms
52,992 KB
testcase_07 AC 36 ms
52,608 KB
testcase_08 AC 37 ms
52,992 KB
testcase_09 AC 37 ms
53,120 KB
testcase_10 AC 39 ms
52,992 KB
testcase_11 AC 36 ms
52,864 KB
testcase_12 AC 40 ms
53,632 KB
testcase_13 AC 40 ms
52,992 KB
testcase_14 AC 127 ms
77,624 KB
testcase_15 AC 96 ms
76,584 KB
testcase_16 AC 97 ms
76,544 KB
testcase_17 AC 96 ms
76,424 KB
testcase_18 AC 39 ms
53,632 KB
testcase_19 AC 98 ms
76,544 KB
testcase_20 AC 100 ms
76,928 KB
testcase_21 AC 48 ms
64,000 KB
testcase_22 AC 47 ms
64,000 KB
testcase_23 AC 49 ms
64,512 KB
testcase_24 AC 51 ms
64,256 KB
testcase_25 AC 49 ms
63,744 KB
testcase_26 AC 53 ms
68,096 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 58 ms
68,352 KB
testcase_30 AC 39 ms
52,480 KB
testcase_31 AC 38 ms
52,224 KB
testcase_32 AC 139 ms
77,496 KB
testcase_33 AC 160 ms
77,872 KB
testcase_34 AC 167 ms
78,288 KB
testcase_35 AC 157 ms
77,756 KB
testcase_36 AC 164 ms
77,560 KB
testcase_37 AC 146 ms
77,240 KB
testcase_38 AC 123 ms
77,352 KB
testcase_39 AC 178 ms
77,896 KB
testcase_40 AC 168 ms
77,540 KB
testcase_41 AC 176 ms
78,348 KB
testcase_42 AC 157 ms
78,084 KB
testcase_43 AC 141 ms
77,368 KB
testcase_44 AC 195 ms
78,176 KB
testcase_45 AC 117 ms
77,056 KB
testcase_46 AC 176 ms
78,188 KB
testcase_47 AC 153 ms
77,740 KB
testcase_48 AC 151 ms
77,720 KB
testcase_49 AC 123 ms
77,384 KB
testcase_50 AC 163 ms
78,616 KB
testcase_51 AC 172 ms
77,912 KB
権限があれば一括ダウンロードができます

ソースコード

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