結果

問題 No.1638 Robot Maze
ユーザー irumo8202irumo8202
提出日時 2022-02-07 12:19:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 879 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-12 03:58:22
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 77 ms
11,136 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 31 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 43 ms
10,880 KB
testcase_16 AC 43 ms
10,880 KB
testcase_17 WA -
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 44 ms
11,008 KB
testcase_20 AC 44 ms
11,136 KB
testcase_21 AC 53 ms
11,264 KB
testcase_22 AC 50 ms
11,008 KB
testcase_23 WA -
testcase_24 AC 51 ms
11,136 KB
testcase_25 AC 53 ms
11,136 KB
testcase_26 WA -
testcase_27 AC 58 ms
11,008 KB
testcase_28 AC 58 ms
11,008 KB
testcase_29 WA -
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 31 ms
11,008 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 166 ms
11,136 KB
testcase_35 AC 197 ms
11,136 KB
testcase_36 WA -
testcase_37 AC 64 ms
11,136 KB
testcase_38 WA -
testcase_39 AC 253 ms
11,136 KB
testcase_40 AC 169 ms
11,136 KB
testcase_41 AC 245 ms
11,264 KB
testcase_42 AC 265 ms
11,264 KB
testcase_43 AC 74 ms
11,264 KB
testcase_44 AC 82 ms
11,136 KB
testcase_45 AC 76 ms
11,136 KB
testcase_46 AC 133 ms
11,136 KB
testcase_47 AC 66 ms
11,264 KB
testcase_48 AC 156 ms
11,136 KB
testcase_49 AC 88 ms
11,136 KB
testcase_50 AC 240 ms
11,392 KB
testcase_51 AC 83 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 1 << 60
H, W = map(int, input().split())
U, D, R, L, K, P = map(int, input().split())
sx, sy, tx, ty = map(lambda x: int(x) - 1, input().split())

C = [input() for _ in range(H)]

cost = [[INF for _ in range(W)] for _ in range(H)]

cost[sy][sx] = 0
que = deque([(sy, sx)])
direction = [(-1, 0, U), (0, 1, R), (1, 0, D), (0, -1, L)]


def valid(y, x):
    return 0 <= x < W and 0 <= y < H


while que:
    y, x = que.popleft()

    for dy, dx, ct in direction:
        ny, nx = y + dy, x + dx
        if not valid(ny, nx):
            continue

        if C[ny][nx] == "#":
            continue

        if C[ny][nx] == "@":
            ct += P

        if cost[ny][nx] <= cost[y][x] + ct:
            continue

        cost[ny][nx] = min(cost[ny][nx], cost[y][x] + ct)
        que.append((ny, nx))

print("Yes" if cost[ty][tx] <= K else "No")
0