結果

問題 No.34 砂漠の行商人
ユーザー titiatitia
提出日時 2022-01-06 02:22:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 345,796 KB
最終ジャッジ日時 2024-11-06 13:51:22
合計ジャッジ時間 35,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,040 KB
testcase_01 AC 47 ms
60,900 KB
testcase_02 AC 60 ms
68,972 KB
testcase_03 AC 71 ms
76,724 KB
testcase_04 AC 109 ms
81,444 KB
testcase_05 AC 104 ms
81,792 KB
testcase_06 AC 61 ms
71,664 KB
testcase_07 AC 133 ms
84,864 KB
testcase_08 AC 165 ms
90,984 KB
testcase_09 AC 2,230 ms
286,380 KB
testcase_10 AC 2,364 ms
267,468 KB
testcase_11 WA -
testcase_12 AC 115 ms
81,532 KB
testcase_13 AC 3,936 ms
345,796 KB
testcase_14 AC 3,947 ms
340,524 KB
testcase_15 AC 961 ms
216,388 KB
testcase_16 AC 937 ms
203,240 KB
testcase_17 AC 2,238 ms
284,208 KB
testcase_18 AC 190 ms
89,020 KB
testcase_19 AC 1,814 ms
286,412 KB
testcase_20 AC 3,578 ms
328,884 KB
testcase_21 AC 64 ms
74,456 KB
testcase_22 AC 3,786 ms
324,032 KB
testcase_23 AC 1,408 ms
272,408 KB
testcase_24 AC 3,956 ms
331,108 KB
testcase_25 AC 257 ms
102,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,V,x,y,zz,ww=map(int,input().split())
MAP=[list(map(int,input().split())) for i in range(N)]

x,y=y,x
zz,ww=ww,zz
V=min(V,1000)
x-=1
y-=1
zz-=1
ww-=1
DP=[[1<<30]*(N*N) for i in range(V+1)]

DP[V][x*N+y]=0

Q=deque()
Q.append((0,V,x*N+y))

while Q:
    now,power,xy=Q.popleft()

    x=xy//N
    y=xy%N

    for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
        if 0<=z<N and 0<=w<N:
            nec=z*N+w
            dec=MAP[z][w]

            if power-dec>0 and DP[power-dec][nec]>now+1:
                DP[power-dec][nec]=now+1
                Q.append((now+1,power-dec,nec))

ANS=1<<30
for i in range(V+1):
    ANS=min(ANS,DP[i][zz*N+ww])

if ANS==1<<30:
    print(-1)
else:
    print(ANS)
                
0