結果

問題 No.34 砂漠の行商人
ユーザー zimphazimpha
提出日時 2017-12-12 21:37:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,875 ms / 5,000 ms
コード長 888 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 361,520 KB
最終ジャッジ日時 2024-06-28 10:38:24
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
66,944 KB
testcase_01 AC 77 ms
68,352 KB
testcase_02 AC 106 ms
77,824 KB
testcase_03 AC 72 ms
66,816 KB
testcase_04 AC 157 ms
83,712 KB
testcase_05 AC 160 ms
84,096 KB
testcase_06 AC 108 ms
78,848 KB
testcase_07 AC 188 ms
86,656 KB
testcase_08 AC 236 ms
92,928 KB
testcase_09 AC 73 ms
66,688 KB
testcase_10 AC 72 ms
66,816 KB
testcase_11 AC 73 ms
66,944 KB
testcase_12 AC 144 ms
82,816 KB
testcase_13 AC 72 ms
66,816 KB
testcase_14 AC 71 ms
66,944 KB
testcase_15 AC 71 ms
66,944 KB
testcase_16 AC 72 ms
66,944 KB
testcase_17 AC 71 ms
66,816 KB
testcase_18 AC 72 ms
66,816 KB
testcase_19 AC 1,721 ms
297,216 KB
testcase_20 AC 2,875 ms
361,520 KB
testcase_21 AC 108 ms
82,688 KB
testcase_22 AC 72 ms
66,944 KB
testcase_23 AC 72 ms
66,944 KB
testcase_24 AC 74 ms
66,816 KB
testcase_25 AC 255 ms
98,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import Queue
from collections import deque

def solve():
  n, v, sy, sx, gy, gx = list(map(int, input().split()))
  if v > (abs(sx - gx) + abs(sy - gy)) * 9:
    return abs(sx - gx) + abs(sy - gy)
  gx, gy = gx - 1, gy - 1
  g = [list(map(int, input().split())) for i in range(n)]
  dis = [[[-1] * (v + 1) for j in range(n)] for i in range(n)]
  dis[sx - 1][sy - 1][v] = 0
  queue = deque()
  queue.append((sx - 1, sy - 1, v))
  dxy = [(0, 1), (0, -1), (1, 0), (-1, 0)]
  while queue:
    u = queue.popleft()
    cost = dis[u[0]][u[1]][u[2]] + 1
    for d in dxy:
      x, y = u[0] + d[0], u[1] + d[1]
      if x < 0 or x >= n or y < 0 or y >= n:
        continue
      z = u[2] - g[x][y]
      if z > 0 and dis[x][y][z] == -1:
        dis[x][y][z] = cost
        if x == gx and y == gy:
          return dis[x][y][z]
        queue.append((x, y, z))
  return -1

print(solve())
0