結果

問題 No.1638 Robot Maze
ユーザー convexineqconvexineq
提出日時 2021-08-06 22:45:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 740 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 77,456 KB
最終ジャッジ日時 2024-09-17 02:58:39
合計ジャッジ時間 5,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 91 ms
75,904 KB
testcase_04 AC 44 ms
52,992 KB
testcase_05 AC 42 ms
52,736 KB
testcase_06 AC 44 ms
52,608 KB
testcase_07 AC 45 ms
52,608 KB
testcase_08 AC 44 ms
52,608 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 45 ms
52,864 KB
testcase_11 AC 44 ms
52,864 KB
testcase_12 AC 41 ms
52,864 KB
testcase_13 AC 42 ms
52,480 KB
testcase_14 AC 96 ms
76,544 KB
testcase_15 AC 88 ms
76,484 KB
testcase_16 AC 87 ms
76,288 KB
testcase_17 AC 92 ms
76,544 KB
testcase_18 AC 43 ms
53,248 KB
testcase_19 AC 84 ms
74,988 KB
testcase_20 AC 87 ms
75,008 KB
testcase_21 AC 58 ms
63,616 KB
testcase_22 AC 60 ms
63,872 KB
testcase_23 AC 55 ms
63,488 KB
testcase_24 AC 56 ms
63,488 KB
testcase_25 AC 56 ms
63,360 KB
testcase_26 AC 62 ms
67,968 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 64 ms
67,840 KB
testcase_30 AC 42 ms
52,608 KB
testcase_31 AC 44 ms
52,096 KB
testcase_32 AC 103 ms
76,288 KB
testcase_33 AC 121 ms
76,360 KB
testcase_34 AC 111 ms
76,160 KB
testcase_35 AC 118 ms
76,276 KB
testcase_36 AC 119 ms
76,620 KB
testcase_37 AC 97 ms
76,416 KB
testcase_38 AC 104 ms
76,544 KB
testcase_39 AC 114 ms
76,544 KB
testcase_40 AC 106 ms
76,488 KB
testcase_41 AC 112 ms
76,668 KB
testcase_42 AC 115 ms
76,416 KB
testcase_43 AC 139 ms
77,456 KB
testcase_44 AC 149 ms
77,344 KB
testcase_45 AC 138 ms
77,240 KB
testcase_46 AC 108 ms
76,384 KB
testcase_47 AC 104 ms
76,160 KB
testcase_48 AC 116 ms
76,280 KB
testcase_49 AC 100 ms
76,544 KB
testcase_50 AC 117 ms
76,536 KB
testcase_51 AC 133 ms
76,508 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)]
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")
0