結果

問題 No.1638 Robot Maze
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-30 18:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,892 KB
最終ジャッジ日時 2024-06-30 18:37:38
合計ジャッジ時間 4,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,012 KB
testcase_01 AC 39 ms
53,904 KB
testcase_02 AC 39 ms
53,700 KB
testcase_03 AC 80 ms
76,280 KB
testcase_04 AC 40 ms
54,612 KB
testcase_05 AC 39 ms
53,364 KB
testcase_06 AC 41 ms
54,296 KB
testcase_07 AC 40 ms
53,244 KB
testcase_08 AC 42 ms
54,120 KB
testcase_09 AC 40 ms
53,312 KB
testcase_10 AC 40 ms
53,848 KB
testcase_11 AC 40 ms
53,940 KB
testcase_12 AC 40 ms
53,996 KB
testcase_13 AC 39 ms
53,356 KB
testcase_14 AC 71 ms
71,956 KB
testcase_15 AC 72 ms
72,044 KB
testcase_16 AC 71 ms
71,848 KB
testcase_17 AC 79 ms
75,120 KB
testcase_18 AC 42 ms
53,936 KB
testcase_19 AC 65 ms
69,896 KB
testcase_20 AC 68 ms
68,912 KB
testcase_21 AC 40 ms
53,688 KB
testcase_22 AC 54 ms
65,628 KB
testcase_23 AC 54 ms
65,032 KB
testcase_24 AC 52 ms
63,700 KB
testcase_25 AC 52 ms
64,012 KB
testcase_26 AC 56 ms
68,876 KB
testcase_27 AC 56 ms
67,144 KB
testcase_28 AC 60 ms
68,996 KB
testcase_29 AC 56 ms
69,220 KB
testcase_30 AC 39 ms
53,764 KB
testcase_31 AC 39 ms
53,600 KB
testcase_32 AC 85 ms
76,516 KB
testcase_33 AC 106 ms
76,340 KB
testcase_34 AC 97 ms
76,892 KB
testcase_35 AC 93 ms
76,612 KB
testcase_36 AC 98 ms
76,268 KB
testcase_37 AC 88 ms
76,240 KB
testcase_38 AC 40 ms
53,096 KB
testcase_39 AC 102 ms
76,640 KB
testcase_40 AC 111 ms
76,408 KB
testcase_41 AC 99 ms
76,712 KB
testcase_42 AC 41 ms
54,548 KB
testcase_43 AC 41 ms
54,532 KB
testcase_44 AC 39 ms
53,432 KB
testcase_45 AC 39 ms
53,488 KB
testcase_46 AC 40 ms
53,424 KB
testcase_47 AC 40 ms
53,324 KB
testcase_48 AC 40 ms
53,560 KB
testcase_49 AC 42 ms
54,648 KB
testcase_50 AC 40 ms
54,952 KB
testcase_51 AC 39 ms
53,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
U,D,R,L,k,p=map(int,input().split())
c=[U,D,R,L]
d=[(-1,0),(1,0),(0,1),(0,-1)]
Sx,Sy,Gx,Gy=map(int,input().split())
Sx-=1
Sy-=1
Gx-=1
Gy-=1
s=[input() for i in range(h)]
v=[[k+1]*w for i in range(h)]
v[Sx][Sy]=0
q=[(v[Sx][Sy],Sx,Sy)]
from heapq import heappush,heappop
while len(q)>0:
  sc,sx,sy=heappop(q)
  if sc>v[sx][sy]:
    continue
  for i in range(4):
    dx,dy=d[i]
    tx,ty=sx+dx,sy+dy
    if 0<=tx<h and 0<=ty<w and s[tx][ty]!="#":
      tc=sc+c[i]+p*(s[tx][ty]=="@")
      if v[tx][ty]>tc:
        v[tx][ty]=tc
        heappush(q,(v[tx][ty],tx,ty))
print(["No","Yes"][v[Gx][Gy]<=k])
0