結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 41 ms
52,956 KB
testcase_03 AC 86 ms
76,032 KB
testcase_04 AC 41 ms
52,864 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 43 ms
52,864 KB
testcase_07 AC 44 ms
52,352 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 44 ms
52,480 KB
testcase_10 AC 42 ms
52,992 KB
testcase_11 AC 42 ms
52,736 KB
testcase_12 AC 43 ms
52,992 KB
testcase_13 AC 41 ms
52,864 KB
testcase_14 AC 91 ms
76,288 KB
testcase_15 AC 86 ms
76,416 KB
testcase_16 AC 88 ms
76,364 KB
testcase_17 AC 90 ms
76,492 KB
testcase_18 AC 45 ms
53,248 KB
testcase_19 AC 83 ms
74,880 KB
testcase_20 AC 80 ms
74,816 KB
testcase_21 AC 54 ms
63,616 KB
testcase_22 AC 55 ms
64,000 KB
testcase_23 AC 58 ms
63,744 KB
testcase_24 AC 57 ms
64,128 KB
testcase_25 AC 56 ms
64,256 KB
testcase_26 AC 60 ms
68,480 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 60 ms
68,224 KB
testcase_30 AC 42 ms
52,480 KB
testcase_31 AC 42 ms
52,096 KB
testcase_32 AC 103 ms
76,668 KB
testcase_33 AC 123 ms
76,640 KB
testcase_34 AC 109 ms
76,500 KB
testcase_35 AC 127 ms
76,396 KB
testcase_36 AC 127 ms
76,600 KB
testcase_37 AC 107 ms
76,672 KB
testcase_38 AC 116 ms
76,544 KB
testcase_39 AC 112 ms
76,492 KB
testcase_40 AC 109 ms
76,544 KB
testcase_41 AC 130 ms
76,720 KB
testcase_42 AC 128 ms
76,716 KB
testcase_43 AC 132 ms
76,896 KB
testcase_44 AC 136 ms
76,640 KB
testcase_45 AC 142 ms
77,256 KB
testcase_46 AC 115 ms
76,288 KB
testcase_47 AC 105 ms
76,308 KB
testcase_48 AC 120 ms
76,660 KB
testcase_49 AC 98 ms
76,420 KB
testcase_50 AC 119 ms
76,288 KB
testcase_51 AC 129 ms
76,336 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,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")
0