結果

問題 No.34 砂漠の行商人
ユーザー convexineqconvexineq
提出日時 2021-01-17 03:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 881 ms / 5,000 ms
コード長 776 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 269,440 KB
最終ジャッジ日時 2024-11-29 01:31:55
合計ジャッジ時間 6,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 69 ms
66,304 KB
testcase_03 AC 47 ms
54,144 KB
testcase_04 AC 102 ms
79,616 KB
testcase_05 AC 112 ms
81,152 KB
testcase_06 AC 76 ms
70,528 KB
testcase_07 AC 140 ms
83,968 KB
testcase_08 AC 159 ms
88,704 KB
testcase_09 AC 335 ms
168,960 KB
testcase_10 AC 235 ms
218,496 KB
testcase_11 AC 256 ms
219,136 KB
testcase_12 AC 92 ms
79,488 KB
testcase_13 AC 881 ms
269,440 KB
testcase_14 AC 645 ms
245,120 KB
testcase_15 AC 111 ms
113,896 KB
testcase_16 AC 139 ms
115,088 KB
testcase_17 AC 106 ms
113,124 KB
testcase_18 AC 95 ms
84,096 KB
testcase_19 AC 276 ms
124,900 KB
testcase_20 AC 388 ms
163,968 KB
testcase_21 AC 76 ms
73,560 KB
testcase_22 AC 138 ms
135,976 KB
testcase_23 AC 130 ms
132,976 KB
testcase_24 AC 522 ms
224,384 KB
testcase_25 AC 104 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,v,sy,sx,gy,gx = map(int,input().split())
b = [list(map(int,input().split())) for _ in range(n)]
v = min(v,1800)
INF = 10**9
d = [[[INF]*(v+1) for _ in range(n)] for _ in range(n)]
mv = [[-1]*n for _ in range(n)]
mv[sx-1][sy-1] = v
d[sx-1][sy-1][v] = 0
gx -= 1; gy -= 1
from collections import deque
q = deque([(v,sx-1,sy-1)])

while q:
    v,x,y = q.popleft()
    if x==gx and y==gy:
        print(d[x][y][v])
        exit()
    dv = d[x][y][v]
    for nx,ny in [(x+1,y),(x-1,y),(x,y-1),(x,y+1)]:
        if 0 <= nx < n and 0 <= ny < n:
            nv = v - b[nx][ny]
            if nv <= 0: continue
            if dv+1 < d[nx][ny][nv] and mv[nx][ny] < nv:
                mv[nx][ny] = nv
                d[nx][ny][nv] = dv+1
                q.append((nv,nx,ny))

print(-1)
0