結果

問題 No.1638 Robot Maze
ユーザー O2MTO2MT
提出日時 2021-08-11 22:31:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 78,436 KB
最終ジャッジ日時 2024-09-25 08:28:05
合計ジャッジ時間 5,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,092 KB
testcase_01 AC 41 ms
53,916 KB
testcase_02 AC 42 ms
54,876 KB
testcase_03 AC 57 ms
66,920 KB
testcase_04 AC 42 ms
54,044 KB
testcase_05 AC 41 ms
55,464 KB
testcase_06 AC 41 ms
54,384 KB
testcase_07 AC 42 ms
55,292 KB
testcase_08 AC 43 ms
54,268 KB
testcase_09 AC 42 ms
54,988 KB
testcase_10 AC 42 ms
55,256 KB
testcase_11 AC 42 ms
54,416 KB
testcase_12 AC 42 ms
53,940 KB
testcase_13 AC 42 ms
54,244 KB
testcase_14 AC 68 ms
71,380 KB
testcase_15 AC 57 ms
66,396 KB
testcase_16 AC 56 ms
66,128 KB
testcase_17 AC 66 ms
70,252 KB
testcase_18 AC 44 ms
56,236 KB
testcase_19 AC 57 ms
66,756 KB
testcase_20 AC 57 ms
66,484 KB
testcase_21 AC 56 ms
66,796 KB
testcase_22 AC 55 ms
66,088 KB
testcase_23 AC 56 ms
66,820 KB
testcase_24 AC 56 ms
67,144 KB
testcase_25 AC 56 ms
66,656 KB
testcase_26 AC 56 ms
65,884 KB
testcase_27 AC 56 ms
66,504 KB
testcase_28 AC 56 ms
66,060 KB
testcase_29 AC 56 ms
65,832 KB
testcase_30 AC 41 ms
54,856 KB
testcase_31 AC 41 ms
53,852 KB
testcase_32 AC 70 ms
72,744 KB
testcase_33 AC 112 ms
76,944 KB
testcase_34 AC 130 ms
78,160 KB
testcase_35 AC 95 ms
76,996 KB
testcase_36 AC 113 ms
77,040 KB
testcase_37 AC 71 ms
72,576 KB
testcase_38 AC 88 ms
76,620 KB
testcase_39 AC 126 ms
78,436 KB
testcase_40 AC 91 ms
76,836 KB
testcase_41 AC 113 ms
76,948 KB
testcase_42 AC 109 ms
77,016 KB
testcase_43 AC 95 ms
76,856 KB
testcase_44 AC 100 ms
76,668 KB
testcase_45 AC 100 ms
76,840 KB
testcase_46 AC 104 ms
76,996 KB
testcase_47 AC 68 ms
72,240 KB
testcase_48 AC 112 ms
77,188 KB
testcase_49 AC 76 ms
74,256 KB
testcase_50 AC 123 ms
77,988 KB
testcase_51 AC 117 ms
78,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H,W = map(int,input().split())
U,D,R,L,K,P = map(int,input().split())
sx,sy,tx,ty = map(int,input().split())
sx -= 1
sy -= 1
tx -= 1
ty -= 1
C = [list(str(input())) for _ in range(H)]
move = [(-1,0,U),(1,0,D),(0,1,R),(0,-1,L)]
INF = 10**18
que = deque([(sx,sy,0)])
seem = [[INF]*W for _ in range(H)]
seem[sx][sy] = 0

while que:
  x,y,c = que.popleft()
  for i,j,n in move:
    h,w = x+i,y+j
    if 0 <= h < H and 0 <= w < W:
      if C[h][w] == '#':
        continue
      if C[h][w] == '@':
        n += P
      if seem[h][w] > c+n:
        seem[h][w] = c+n
        que.append((h,w,c+n))

if seem[tx][ty] <= K:
  print('Yes')
else:
  print('No')
0