結果

問題 No.34 砂漠の行商人
ユーザー titiatitia
提出日時 2022-01-06 02:32:31
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 738 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,984 KB
実行使用メモリ 492,424 KB
最終ジャッジ日時 2024-11-06 14:04:32
合計ジャッジ時間 13,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,400 KB
testcase_01 AC 48 ms
61,300 KB
testcase_02 AC 60 ms
69,080 KB
testcase_03 AC 43 ms
54,772 KB
testcase_04 AC 106 ms
81,292 KB
testcase_05 AC 106 ms
81,972 KB
testcase_06 AC 61 ms
70,044 KB
testcase_07 AC 127 ms
85,080 KB
testcase_08 AC 156 ms
91,136 KB
testcase_09 AC 1,863 ms
309,276 KB
testcase_10 AC 210 ms
223,004 KB
testcase_11 AC 3,349 ms
472,820 KB
testcase_12 AC 93 ms
80,860 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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,1800)
x-=1
y-=1
zz-=1
ww-=1
DP=[1<<30]*(N*N*(V+1))

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

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

while Q:
    now,power,xy=Q.popleft()
    if xy==zz*N+ww:
        print(now)
        break

    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)*N*N+nec]>now+1:
                DP[(power-dec)*N*N+nec]=now+1
                Q.append((now+1,power-dec,nec))

else:
    print(-1)

                
0