結果
問題 | No.34 砂漠の行商人 |
ユーザー | zimpha |
提出日時 | 2017-12-12 12:26:59 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 296,892 KB |
最終ジャッジ日時 | 2024-05-08 04:27:58 |
合計ジャッジ時間 | 13,474 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
67,072 KB |
testcase_01 | AC | 76 ms
71,808 KB |
testcase_02 | AC | 116 ms
78,740 KB |
testcase_03 | AC | 68 ms
67,584 KB |
testcase_04 | AC | 268 ms
84,936 KB |
testcase_05 | AC | 275 ms
85,504 KB |
testcase_06 | AC | 117 ms
79,328 KB |
testcase_07 | AC | 364 ms
89,088 KB |
testcase_08 | AC | 457 ms
95,000 KB |
testcase_09 | AC | 67 ms
67,200 KB |
testcase_10 | AC | 67 ms
67,328 KB |
testcase_11 | AC | 68 ms
66,928 KB |
testcase_12 | AC | 209 ms
84,036 KB |
testcase_13 | AC | 68 ms
66,944 KB |
testcase_14 | AC | 67 ms
67,072 KB |
testcase_15 | AC | 66 ms
67,200 KB |
testcase_16 | AC | 67 ms
67,072 KB |
testcase_17 | AC | 68 ms
67,016 KB |
testcase_18 | AC | 67 ms
67,068 KB |
testcase_19 | AC | 3,461 ms
280,448 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
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())