結果

問題 No.1638 Robot Maze
ユーザー roarisroaris
提出日時 2021-08-06 22:00:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,520 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-09-17 01:58:37
合計ジャッジ時間 4,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,548 KB
testcase_01 AC 32 ms
53,560 KB
testcase_02 AC 32 ms
52,680 KB
testcase_03 AC 76 ms
75,916 KB
testcase_04 AC 35 ms
53,988 KB
testcase_05 AC 34 ms
53,080 KB
testcase_06 AC 34 ms
54,532 KB
testcase_07 AC 33 ms
54,132 KB
testcase_08 AC 33 ms
53,612 KB
testcase_09 AC 33 ms
53,592 KB
testcase_10 AC 35 ms
53,428 KB
testcase_11 AC 35 ms
54,152 KB
testcase_12 AC 38 ms
53,016 KB
testcase_13 AC 34 ms
52,764 KB
testcase_14 AC 81 ms
76,248 KB
testcase_15 AC 75 ms
75,868 KB
testcase_16 AC 72 ms
76,156 KB
testcase_17 AC 77 ms
76,068 KB
testcase_18 AC 39 ms
54,800 KB
testcase_19 AC 79 ms
75,872 KB
testcase_20 AC 71 ms
76,176 KB
testcase_21 AC 46 ms
64,476 KB
testcase_22 AC 46 ms
65,632 KB
testcase_23 AC 45 ms
65,580 KB
testcase_24 AC 49 ms
66,384 KB
testcase_25 AC 49 ms
64,936 KB
testcase_26 AC 54 ms
69,204 KB
testcase_27 AC 55 ms
69,292 KB
testcase_28 AC 55 ms
69,212 KB
testcase_29 AC 56 ms
70,020 KB
testcase_30 AC 37 ms
53,356 KB
testcase_31 AC 37 ms
54,328 KB
testcase_32 AC 96 ms
76,336 KB
testcase_33 AC 93 ms
76,368 KB
testcase_34 AC 82 ms
76,184 KB
testcase_35 AC 93 ms
76,008 KB
testcase_36 AC 94 ms
76,520 KB
testcase_37 AC 83 ms
76,264 KB
testcase_38 AC 91 ms
76,540 KB
testcase_39 AC 89 ms
76,228 KB
testcase_40 AC 100 ms
76,012 KB
testcase_41 AC 99 ms
76,700 KB
testcase_42 AC 97 ms
76,424 KB
testcase_43 AC 112 ms
76,964 KB
testcase_44 AC 93 ms
76,468 KB
testcase_45 AC 94 ms
76,464 KB
testcase_46 AC 91 ms
76,172 KB
testcase_47 AC 86 ms
76,252 KB
testcase_48 AC 92 ms
75,932 KB
testcase_49 AC 89 ms
76,116 KB
testcase_50 AC 93 ms
76,440 KB
testcase_51 AC 104 ms
76,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

def dijkstra():
    dist = [[10**18]*W for _ in range(H)]
    dist[xs-1][ys-1] = 0
    pq = [(0, (xs-1)*10000+ys-1)]
    
    while pq:
        d, xy = heappop(pq)
        x, y = divmod(xy, 10000)
        
        for nx, ny, c in [(x-1, y, U), (x+1, y, D), (x, y-1, L), (x, y+1, R)]:
            if 0<=nx<H and 0<=ny<W and C[nx][ny]!='#':
                if C[nx][ny]=='@':
                    c += P
                    
                if dist[nx][ny]>dist[x][y]+c:
                    dist[nx][ny] = dist[x][y]+c
                    heappush(pq, (dist[nx][ny], nx*10000+ny))
    
    return dist[xt-1][yt-1]<=K

H, W = map(int, input().split())
U, D, R, L, K, P = map(int, input().split())
xs, ys, xt, yt = map(int, input().split())
C = [input()[:-1] for _ in range(H)]

if dijkstra():
    print('Yes')
else:
    print('No')
0