結果

問題 No.1638 Robot Maze
ユーザー MineMine
提出日時 2021-09-10 13:00:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 77,628 KB
最終ジャッジ日時 2024-06-10 23:21:34
合計ジャッジ時間 6,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 119 ms
76,416 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 41 ms
53,120 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 42 ms
52,608 KB
testcase_09 AC 42 ms
52,736 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 41 ms
52,736 KB
testcase_12 AC 41 ms
52,608 KB
testcase_13 AC 41 ms
52,480 KB
testcase_14 AC 85 ms
74,752 KB
testcase_15 AC 96 ms
76,268 KB
testcase_16 AC 96 ms
76,160 KB
testcase_17 AC 111 ms
76,288 KB
testcase_18 AC 45 ms
53,504 KB
testcase_19 AC 100 ms
76,160 KB
testcase_20 AC 96 ms
76,288 KB
testcase_21 AC 57 ms
65,664 KB
testcase_22 AC 56 ms
65,280 KB
testcase_23 AC 56 ms
65,280 KB
testcase_24 AC 56 ms
65,024 KB
testcase_25 AC 57 ms
65,408 KB
testcase_26 AC 59 ms
67,840 KB
testcase_27 AC 60 ms
67,456 KB
testcase_28 AC 61 ms
68,480 KB
testcase_29 AC 59 ms
68,096 KB
testcase_30 AC 40 ms
52,480 KB
testcase_31 AC 40 ms
52,608 KB
testcase_32 AC 125 ms
76,364 KB
testcase_33 AC 126 ms
76,688 KB
testcase_34 AC 107 ms
76,304 KB
testcase_35 AC 127 ms
76,996 KB
testcase_36 AC 107 ms
76,280 KB
testcase_37 AC 122 ms
76,288 KB
testcase_38 AC 41 ms
53,248 KB
testcase_39 AC 109 ms
76,288 KB
testcase_40 AC 113 ms
76,288 KB
testcase_41 AC 145 ms
77,628 KB
testcase_42 AC 101 ms
76,416 KB
testcase_43 AC 159 ms
76,780 KB
testcase_44 AC 120 ms
76,288 KB
testcase_45 AC 108 ms
76,708 KB
testcase_46 AC 123 ms
76,692 KB
testcase_47 AC 138 ms
76,964 KB
testcase_48 AC 114 ms
76,288 KB
testcase_49 AC 146 ms
77,232 KB
testcase_50 AC 143 ms
77,444 KB
testcase_51 AC 130 ms
77,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

def main():
    H, W = map(int, input().split())
    u,d,r,l,k,p = map(int, input().split())
    x1, x2, y1, y2 = [i-1 for i in list(map(int, input().split()))]
    c = [input() for i in range(H)]
    seen = [[False]*W for _ in range(H)]
    costs = [u, d, r, l]
    directions = [(-1, 0), (1, 0), (0, 1), (0, -1)]

    hq = []
    hq.append((0, x1, x2))
    while hq:
        cost, h, w = heapq.heappop(hq)
        if h == y1 and w == y2:
            if cost <= k:
                return True
            else:
                return False
        if not seen[h][w]:
            seen[h][w] = True
            for idx, (dh, dw) in enumerate(directions):
                if 0 <= h+dh < H and 0 <= w+dw < W and not seen[h+dh][w+dw]:
                    if c[h+dh][w+dw] == ".":
                        heapq.heappush(hq, (cost + costs[idx], h+dh, w+dw))
                    elif c[h+dh][w+dw] == "@":
                        heapq.heappush(hq, (cost + costs[idx] + p, h+dh, w+dw))
    return False

if main():
    print("Yes")
else:
    print("No")
0