結果

問題 No.1638 Robot Maze
ユーザー KazunKazun
提出日時 2021-08-06 21:36:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,316 KB
最終ジャッジ日時 2024-09-17 01:28:01
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 94 ms
76,288 KB
testcase_04 AC 35 ms
52,736 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,864 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 35 ms
52,864 KB
testcase_09 AC 36 ms
52,608 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 37 ms
52,864 KB
testcase_12 AC 36 ms
52,736 KB
testcase_13 AC 35 ms
52,480 KB
testcase_14 WA -
testcase_15 AC 87 ms
76,288 KB
testcase_16 AC 88 ms
76,288 KB
testcase_17 AC 94 ms
76,580 KB
testcase_18 AC 38 ms
54,016 KB
testcase_19 AC 85 ms
76,544 KB
testcase_20 AC 84 ms
76,360 KB
testcase_21 AC 49 ms
63,744 KB
testcase_22 AC 48 ms
63,872 KB
testcase_23 AC 48 ms
63,360 KB
testcase_24 AC 48 ms
63,744 KB
testcase_25 AC 49 ms
64,384 KB
testcase_26 AC 51 ms
66,688 KB
testcase_27 AC 52 ms
66,688 KB
testcase_28 AC 51 ms
67,328 KB
testcase_29 WA -
testcase_30 AC 36 ms
52,352 KB
testcase_31 AC 34 ms
52,480 KB
testcase_32 AC 88 ms
76,416 KB
testcase_33 AC 92 ms
76,208 KB
testcase_34 AC 84 ms
75,904 KB
testcase_35 AC 101 ms
76,248 KB
testcase_36 AC 92 ms
76,588 KB
testcase_37 AC 92 ms
76,732 KB
testcase_38 AC 37 ms
53,632 KB
testcase_39 AC 87 ms
76,416 KB
testcase_40 AC 101 ms
76,452 KB
testcase_41 AC 100 ms
76,288 KB
testcase_42 AC 82 ms
76,288 KB
testcase_43 AC 130 ms
77,264 KB
testcase_44 AC 131 ms
77,316 KB
testcase_45 AC 114 ms
77,256 KB
testcase_46 AC 99 ms
76,652 KB
testcase_47 AC 97 ms
76,584 KB
testcase_48 AC 92 ms
76,496 KB
testcase_49 AC 101 ms
76,416 KB
testcase_50 AC 91 ms
76,504 KB
testcase_51 AC 120 ms
77,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify,heappop,heappush

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=["*"*(W+2)]
for _ in range(H):
    C.append("*"+input()+"*")
C.append("*"*(W+2))

inf=float("inf")
DP=[[inf]*(W+2) for _ in range(H+2)]; DP[xs][ys]=0
Q=[(0,(xs,ys))]

V=[((1,0),U),((-1,0),D),((0,1),R),((0,-1),L)]

while Q:
    d,(x,y)=heappop(Q)

    if DP[x][y]<d:
        continue

    if x==xt and y==yt:
        break

    for (a,b),c in V:
        if 1<=x+a<=H and 1<=y+b<=W and C[x+a][y+b]!="#":
            if C[x+a][y+b]==".":
                m=d+c
            else:
                m=d+c+P
        else:
            continue

        if DP[x+a][y+b]>m:
            DP[x+a][y+b]=m
            heappush(Q,(m,(x+a,y+b)))

print("Yes" if DP[xt][yt]<=K else "No")
0