結果

問題 No.1638 Robot Maze
ユーザー AEnAEn
提出日時 2022-06-18 01:08:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 79,628 KB
最終ジャッジ日時 2024-10-09 11:41:03
合計ジャッジ時間 6,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,400 KB
testcase_01 AC 40 ms
52,648 KB
testcase_02 AC 40 ms
52,776 KB
testcase_03 AC 112 ms
79,628 KB
testcase_04 AC 40 ms
54,712 KB
testcase_05 AC 40 ms
54,196 KB
testcase_06 AC 39 ms
53,800 KB
testcase_07 AC 40 ms
54,308 KB
testcase_08 AC 41 ms
53,860 KB
testcase_09 AC 40 ms
54,072 KB
testcase_10 AC 40 ms
55,408 KB
testcase_11 AC 40 ms
53,740 KB
testcase_12 AC 40 ms
54,984 KB
testcase_13 AC 40 ms
53,576 KB
testcase_14 AC 120 ms
78,872 KB
testcase_15 AC 110 ms
78,136 KB
testcase_16 AC 109 ms
77,872 KB
testcase_17 AC 103 ms
78,220 KB
testcase_18 AC 62 ms
70,676 KB
testcase_19 AC 105 ms
77,932 KB
testcase_20 AC 107 ms
77,928 KB
testcase_21 AC 77 ms
78,104 KB
testcase_22 AC 79 ms
78,108 KB
testcase_23 AC 79 ms
77,836 KB
testcase_24 AC 80 ms
78,268 KB
testcase_25 AC 80 ms
77,860 KB
testcase_26 AC 82 ms
77,988 KB
testcase_27 AC 84 ms
77,636 KB
testcase_28 AC 83 ms
77,668 KB
testcase_29 AC 82 ms
78,312 KB
testcase_30 AC 40 ms
53,932 KB
testcase_31 AC 39 ms
54,160 KB
testcase_32 AC 127 ms
79,304 KB
testcase_33 AC 131 ms
79,128 KB
testcase_34 AC 128 ms
79,240 KB
testcase_35 AC 127 ms
79,164 KB
testcase_36 AC 129 ms
79,512 KB
testcase_37 AC 131 ms
78,896 KB
testcase_38 AC 150 ms
78,904 KB
testcase_39 AC 134 ms
79,212 KB
testcase_40 AC 143 ms
79,064 KB
testcase_41 AC 138 ms
79,492 KB
testcase_42 AC 135 ms
79,376 KB
testcase_43 AC 157 ms
78,988 KB
testcase_44 AC 165 ms
79,100 KB
testcase_45 AC 151 ms
79,332 KB
testcase_46 AC 145 ms
79,280 KB
testcase_47 AC 138 ms
79,104 KB
testcase_48 AC 123 ms
79,232 KB
testcase_49 AC 137 ms
79,068 KB
testcase_50 AC 129 ms
78,976 KB
testcase_51 AC 156 ms
79,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
INF = float('inf')

x = [1, 0, 0, -1]
y = [0, 1, -1, 0]
H, W = map(int, input().split())
U, D, R, L, K, P = map(int, input().split())
cost = [D, R, L, U]
sx, sy, gx, gy = map(int, input().split())
sx-=1;sy-=1;gx-=1;gy-=1
C = [list(input()) for _ in range(H)]
adj = [list() for _ in range(H*W)]
for i in range(H):
    for j in range(W):
        if C[i][j] == '#':
            continue
        else:
            for cc, xx, yy in zip(cost, x, y):
                cx, cy = i+xx, j+yy
                if 0<=cx<H and 0<=cy<W:
                    if C[cx][cy] == '#':
                        continue
                    elif C[cx][cy] == '.':
                        adj[i*H+j].append((cx*H+cy, cc))
                    else:
                        adj[i*H+j].append((cx*H+cy, P+cc))

def dijkstra(s, n):
    dist = [INF] * n
    hq = [(0, s)] # (distance, node)
    dist[s] = 0
    seen = [False] * n # ノードが確定済みかどうか
    # 経路復元用
    # prev = [-1]*n
    while hq:
        dis, v = heappop(hq)
        if dist[v] < dis:
            continue
        seen[v] = True
        for to, cost in adj[v]:
            if seen[to] == False and dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                # prev[to] = v
                heappush(hq, (dist[to], to))
    return dist
d = dijkstra(sx*H+sy, H*W)
if d[gx*H+gy]<=K:
    print('Yes')
else:
    print('No')
0