結果

問題 No.1638 Robot Maze
ユーザー lloyzlloyz
提出日時 2023-08-06 20:58:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 78,320 KB
最終ジャッジ日時 2024-11-07 00:06:03
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,600 KB
testcase_01 AC 42 ms
53,748 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 94 ms
77,436 KB
testcase_04 AC 43 ms
55,076 KB
testcase_05 AC 42 ms
53,388 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 41 ms
52,948 KB
testcase_10 AC 42 ms
53,424 KB
testcase_11 AC 43 ms
53,120 KB
testcase_12 AC 44 ms
53,492 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 100 ms
77,500 KB
testcase_16 AC 100 ms
77,556 KB
testcase_17 WA -
testcase_18 AC 54 ms
70,536 KB
testcase_19 AC 83 ms
77,536 KB
testcase_20 AC 84 ms
77,464 KB
testcase_21 AC 52 ms
69,072 KB
testcase_22 AC 52 ms
68,468 KB
testcase_23 WA -
testcase_24 AC 54 ms
68,916 KB
testcase_25 AC 55 ms
68,520 KB
testcase_26 AC 58 ms
71,084 KB
testcase_27 AC 55 ms
68,480 KB
testcase_28 AC 54 ms
68,640 KB
testcase_29 AC 54 ms
69,380 KB
testcase_30 WA -
testcase_31 AC 42 ms
52,880 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 95 ms
77,544 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 52 ms
68,880 KB
testcase_43 AC 51 ms
67,912 KB
testcase_44 AC 52 ms
68,060 KB
testcase_45 AC 52 ms
68,436 KB
testcase_46 AC 52 ms
68,736 KB
testcase_47 AC 51 ms
68,204 KB
testcase_48 AC 52 ms
69,048 KB
testcase_49 AC 53 ms
68,476 KB
testcase_50 AC 53 ms
68,368 KB
testcase_51 AC 52 ms
70,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

h, w = map(int, input().split())
u, d, r, l, k, p = map(int, input().split())
si, sj, ti, tj = map(int, input().split())
si -= 1
sj -= 1
ti -= 1
tj -= 1
S = [list(input()) for _ in range(h)]

DP = [[[k + 1 for _ in range(2)] for _ in range(w)] for _ in range(h)]
Directions = [(-1, 0), (1, 0), (0, 1), (-1, 0)]
C = [u, d, r, l]
DP[si][sj][0] = 0
H = [(0, si, sj, 0)]
while H:
    cc, ci, cj, ck = heappop(H)
    if cc > DP[ci][cj][ck]:
        continue
    for i in range(4):
        nc = cc
        di, dj = Directions[i]
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w:
            if S[ni][nj] == '#':
                continue
            elif S[ni][nj] == '@':
                nc += p
                nk = 1
            else:
                nk = 0
            nc += C[i]
            if nc >= DP[ni][nj][nk]:
                continue
            DP[ni][nj][nk] = nc
            heappush(H, (nc, ni, nj, nk))
if DP[ti][tj][0] == k + 1:
    print("No")
else:
    print("Yes")
0