結果

問題 No.1638 Robot Maze
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-17 19:50:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,765 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 80,060 KB
最終ジャッジ日時 2024-10-10 18:55:45
合計ジャッジ時間 7,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,364 KB
testcase_01 AC 40 ms
54,448 KB
testcase_02 AC 40 ms
54,740 KB
testcase_03 AC 105 ms
78,656 KB
testcase_04 AC 40 ms
53,824 KB
testcase_05 AC 39 ms
54,004 KB
testcase_06 AC 40 ms
54,176 KB
testcase_07 AC 40 ms
54,788 KB
testcase_08 AC 40 ms
54,588 KB
testcase_09 AC 40 ms
54,232 KB
testcase_10 AC 39 ms
54,024 KB
testcase_11 AC 40 ms
54,932 KB
testcase_12 AC 40 ms
54,240 KB
testcase_13 AC 39 ms
53,688 KB
testcase_14 AC 144 ms
79,092 KB
testcase_15 AC 107 ms
77,528 KB
testcase_16 AC 107 ms
77,608 KB
testcase_17 AC 103 ms
77,492 KB
testcase_18 AC 64 ms
69,960 KB
testcase_19 AC 107 ms
77,464 KB
testcase_20 AC 106 ms
77,816 KB
testcase_21 AC 70 ms
73,216 KB
testcase_22 AC 69 ms
72,304 KB
testcase_23 AC 69 ms
72,936 KB
testcase_24 AC 71 ms
75,084 KB
testcase_25 AC 70 ms
73,200 KB
testcase_26 AC 83 ms
78,192 KB
testcase_27 AC 83 ms
78,052 KB
testcase_28 AC 82 ms
78,348 KB
testcase_29 AC 81 ms
78,324 KB
testcase_30 AC 38 ms
53,628 KB
testcase_31 AC 39 ms
53,700 KB
testcase_32 AC 138 ms
79,072 KB
testcase_33 AC 158 ms
79,224 KB
testcase_34 AC 158 ms
79,240 KB
testcase_35 AC 149 ms
79,720 KB
testcase_36 AC 158 ms
79,564 KB
testcase_37 AC 140 ms
79,248 KB
testcase_38 AC 153 ms
79,076 KB
testcase_39 AC 160 ms
79,608 KB
testcase_40 AC 167 ms
79,548 KB
testcase_41 AC 161 ms
79,344 KB
testcase_42 AC 162 ms
79,400 KB
testcase_43 AC 186 ms
80,024 KB
testcase_44 AC 179 ms
80,060 KB
testcase_45 AC 184 ms
79,992 KB
testcase_46 AC 167 ms
79,600 KB
testcase_47 AC 155 ms
79,708 KB
testcase_48 AC 149 ms
79,308 KB
testcase_49 AC 141 ms
78,800 KB
testcase_50 AC 161 ms
79,340 KB
testcase_51 AC 159 ms
79,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
INF = 10**18
def dijkstra(s, edge):
    n = len(edge)
    dist = [INF]*n
    dist[s] = 0
    edgelist = []
    heapq.heappush(edgelist,(dist[s], s))
    while edgelist:
        minedge = heapq.heappop(edgelist)
        if dist[minedge[1]] < minedge[0]:
            continue
        v = minedge[1]
        for e in edge[v]:
            if dist[e[1]] > dist[v]+e[0]:
                dist[e[1]] = dist[v]+e[0]
                heapq.heappush(edgelist,(dist[e[1]], e[1]))
    return dist

import sys
import io, os
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

h, w = map(int, input().split())
u, d, r, l, k, p = map(int, input().split())
g = [[] for i in range(h*w)]
xs, ys, xt, yt = map(int, input().split())
xs, ys, xt, yt = xs-1, ys-1, xt-1, yt-1
C = [str(input().rstrip()) for i in range(h)]
for i in range(h):
    for j in range(w):
        a = i*w+j
        if i > 0:
            b = (i-1)*w+j
            if C[i-1][j] == '.':
                g[a].append((u, b))
            elif  C[i-1][j] == '@':
                g[a].append((u+p, b))
        if i < h-1:
            b = (i+1)*w+j
            if C[i+1][j] == '.':
                g[a].append((d, b))
            elif  C[i+1][j] == '@':
                g[a].append((d+p, b))
        if j < w-1:
            b = i*w+j+1
            if C[i][j+1] == '.':
                g[a].append((r, b))
            elif  C[i][j+1] == '@':
                g[a].append((r+p, b))
        if j > 0:
            b = i*w+j-1
            if C[i][j-1] == '.':
                g[a].append((l, b))
            elif  C[i][j-1] == '@':
                g[a].append((l+p, b))

s = xs*w+ys
t = xt*w+yt
D = dijkstra(s, g)
#print(D[t])
if D[t] <= k:
    print('Yes')
else:
    print('No')
0