結果

問題 No.34 砂漠の行商人
ユーザー zimphazimpha
提出日時 2017-12-12 12:26:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 851 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 289,824 KB
最終ジャッジ日時 2024-12-14 04:55:50
合計ジャッジ時間 13,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,012 KB
testcase_01 AC 72 ms
73,220 KB
testcase_02 AC 105 ms
78,944 KB
testcase_03 AC 63 ms
67,756 KB
testcase_04 AC 248 ms
84,660 KB
testcase_05 AC 246 ms
85,288 KB
testcase_06 AC 105 ms
79,264 KB
testcase_07 AC 340 ms
89,240 KB
testcase_08 AC 435 ms
95,268 KB
testcase_09 AC 62 ms
67,064 KB
testcase_10 AC 61 ms
67,848 KB
testcase_11 AC 64 ms
67,552 KB
testcase_12 AC 194 ms
84,128 KB
testcase_13 AC 62 ms
67,080 KB
testcase_14 AC 59 ms
69,152 KB
testcase_15 AC 61 ms
66,964 KB
testcase_16 AC 61 ms
67,668 KB
testcase_17 AC 61 ms
68,128 KB
testcase_18 AC 61 ms
68,764 KB
testcase_19 AC 3,324 ms
280,316 KB
testcase_20 TLE -
testcase_21 AC 107 ms
83,020 KB
testcase_22 AC 61 ms
67,136 KB
testcase_23 AC 62 ms
68,388 KB
testcase_24 AC 62 ms
67,900 KB
testcase_25 AC 442 ms
103,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import Queue

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 = Queue()
  queue.put((sx - 1, sy - 1, v))
  dx = [0, 0, 1, -1]
  dy = [1, -1, 0, 0]
  while not queue.empty():
    u = queue.get()
    for i in range(4):
      x, y = u[0] + dx[i], u[1] + dy[i]
      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] = dis[u[0]][u[1]][u[2]] + 1
        if x == gx and y == gy:
          return dis[x][y][z]
        queue.put((x, y, z))
  return -1

print(solve())
0