結果

問題 No.1638 Robot Maze
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-08-06 23:42:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 77,264 KB
最終ジャッジ日時 2024-09-17 04:17:42
合計ジャッジ時間 5,013 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,444 KB
testcase_01 AC 43 ms
54,412 KB
testcase_02 AC 42 ms
54,744 KB
testcase_03 AC 65 ms
74,152 KB
testcase_04 AC 41 ms
55,240 KB
testcase_05 AC 41 ms
55,576 KB
testcase_06 AC 42 ms
54,988 KB
testcase_07 AC 44 ms
54,124 KB
testcase_08 AC 43 ms
54,912 KB
testcase_09 AC 43 ms
55,192 KB
testcase_10 AC 40 ms
54,736 KB
testcase_11 AC 40 ms
54,252 KB
testcase_12 AC 42 ms
55,540 KB
testcase_13 AC 42 ms
54,396 KB
testcase_14 AC 77 ms
76,636 KB
testcase_15 AC 59 ms
70,520 KB
testcase_16 AC 59 ms
68,864 KB
testcase_17 AC 58 ms
70,412 KB
testcase_18 AC 41 ms
55,572 KB
testcase_19 AC 59 ms
69,228 KB
testcase_20 AC 60 ms
69,616 KB
testcase_21 AC 62 ms
70,196 KB
testcase_22 AC 59 ms
70,360 KB
testcase_23 AC 58 ms
70,448 KB
testcase_24 AC 58 ms
70,744 KB
testcase_25 AC 57 ms
70,164 KB
testcase_26 AC 60 ms
71,924 KB
testcase_27 AC 62 ms
73,060 KB
testcase_28 AC 61 ms
72,372 KB
testcase_29 AC 61 ms
72,764 KB
testcase_30 AC 39 ms
54,192 KB
testcase_31 AC 40 ms
54,636 KB
testcase_32 AC 74 ms
76,516 KB
testcase_33 AC 118 ms
77,264 KB
testcase_34 AC 107 ms
76,960 KB
testcase_35 AC 101 ms
77,180 KB
testcase_36 AC 100 ms
76,896 KB
testcase_37 AC 70 ms
76,596 KB
testcase_38 AC 84 ms
76,544 KB
testcase_39 AC 104 ms
77,132 KB
testcase_40 AC 93 ms
76,836 KB
testcase_41 AC 112 ms
76,844 KB
testcase_42 AC 107 ms
77,048 KB
testcase_43 AC 83 ms
76,508 KB
testcase_44 AC 79 ms
76,580 KB
testcase_45 AC 80 ms
76,680 KB
testcase_46 AC 89 ms
76,452 KB
testcase_47 AC 75 ms
76,580 KB
testcase_48 AC 100 ms
76,788 KB
testcase_49 AC 79 ms
76,656 KB
testcase_50 AC 104 ms
76,856 KB
testcase_51 AC 78 ms
76,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
h,w = map(int,input().split())
u,d,r,l,k,p = map(int,input().split())
sx,sy,gx,gy = [int(x)-1 for x in input().split()]
need = [u,d,r,l]
dx = [-1,1,0,0]
dy = [0,0,1,-1]
C = [input() for i in range(h)]
inf = 10**20
cost = [[10**20]*w for i in range(h)]
cost[sx][sy] = 0
q = deque([[sx,sy]])
while q:
    x,y = q.popleft()
    for i,j,c in zip(dx,dy,need):
        nx = x+i
        ny = y+j
        if 0 <= nx < h and 0 <= ny < w and C[nx][ny] != "#":
            base = cost[x][y]+c+p*(C[nx][ny]=="@")
            if base < cost[nx][ny]:
                cost[nx][ny] = base
                q.append([nx,ny])

ans = cost[gx][gy]
if ans <= k:
    print("Yes")
else:
    print("No")
0