結果

問題 No.1638 Robot Maze
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-08-07 08:05:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 77,912 KB
最終ジャッジ日時 2024-09-17 11:51:03
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 41 ms
52,736 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 129 ms
76,928 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 40 ms
53,120 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 40 ms
52,864 KB
testcase_10 AC 40 ms
53,120 KB
testcase_11 AC 41 ms
53,632 KB
testcase_12 AC 40 ms
53,376 KB
testcase_13 AC 41 ms
53,120 KB
testcase_14 AC 112 ms
76,672 KB
testcase_15 AC 102 ms
77,056 KB
testcase_16 AC 109 ms
77,120 KB
testcase_17 AC 126 ms
77,836 KB
testcase_18 AC 44 ms
54,400 KB
testcase_19 AC 98 ms
76,936 KB
testcase_20 AC 97 ms
77,056 KB
testcase_21 AC 83 ms
76,672 KB
testcase_22 AC 83 ms
76,672 KB
testcase_23 AC 90 ms
77,108 KB
testcase_24 AC 84 ms
76,544 KB
testcase_25 AC 82 ms
76,544 KB
testcase_26 AC 107 ms
76,952 KB
testcase_27 AC 107 ms
76,880 KB
testcase_28 AC 111 ms
77,120 KB
testcase_29 AC 108 ms
76,852 KB
testcase_30 AC 39 ms
52,736 KB
testcase_31 AC 38 ms
52,480 KB
testcase_32 AC 132 ms
77,344 KB
testcase_33 AC 136 ms
77,176 KB
testcase_34 AC 145 ms
77,040 KB
testcase_35 AC 139 ms
77,184 KB
testcase_36 AC 151 ms
77,540 KB
testcase_37 AC 133 ms
77,056 KB
testcase_38 AC 156 ms
77,912 KB
testcase_39 AC 145 ms
77,288 KB
testcase_40 AC 136 ms
77,024 KB
testcase_41 AC 144 ms
77,296 KB
testcase_42 AC 141 ms
77,376 KB
testcase_43 AC 142 ms
77,284 KB
testcase_44 AC 138 ms
77,492 KB
testcase_45 AC 138 ms
77,200 KB
testcase_46 AC 159 ms
77,224 KB
testcase_47 AC 131 ms
76,768 KB
testcase_48 AC 150 ms
77,184 KB
testcase_49 AC 122 ms
77,124 KB
testcase_50 AC 139 ms
77,360 KB
testcase_51 AC 140 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
h,w = map(int,input().split())
u,d,r,l,k,p = map(int,input().split())
xs,ys,xt,yt = map(int,input().split())
c = [list(input()) for _ in range(h)]
q = ([(0,xs-1,ys-1)])
vecs = [(1,0,d),(-1,0,u),(0,1,r),(0,-1,l)]
vis = [[10 ** 15] * w for _ in range(h)]
while q:
    cost,x,y = heapq.heappop(q)
    if cost < vis[x][y]:
        vis[x][y] =  cost
        for vx,vy,vc in vecs:
            nx,ny = x + vx,y + vy
            if nx >= 0 and nx <= h-1 and ny >= 0 and ny <= w-1:
                if c[nx][ny] != "#":
                    if c[nx][ny] == "@":
                        vc += p
                    heapq.heappush(q,(cost+vc,nx,ny))
if vis[xt-1][yt-1] <= k:
    print("Yes")
else:
    print("No")
0