結果

問題 No.2328 Build Walls
ユーザー tyawanmusityawanmusi
提出日時 2023-05-24 10:12:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,279 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 701,360 KB
最終ジャッジ日時 2024-12-23 14:43:13
合計ジャッジ時間 76,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,828 KB
testcase_01 AC 29 ms
334,520 KB
testcase_02 AC 29 ms
17,828 KB
testcase_03 AC 27 ms
315,904 KB
testcase_04 AC 30 ms
17,828 KB
testcase_05 AC 31 ms
17,828 KB
testcase_06 AC 27 ms
17,956 KB
testcase_07 AC 30 ms
17,956 KB
testcase_08 AC 27 ms
17,828 KB
testcase_09 AC 27 ms
17,952 KB
testcase_10 AC 27 ms
17,956 KB
testcase_11 AC 28 ms
17,952 KB
testcase_12 AC 28 ms
17,956 KB
testcase_13 TLE -
testcase_14 AC 2,826 ms
178,340 KB
testcase_15 MLE -
testcase_16 AC 518 ms
54,692 KB
testcase_17 MLE -
testcase_18 AC 94 ms
22,948 KB
testcase_19 AC 567 ms
62,368 KB
testcase_20 AC 240 ms
34,468 KB
testcase_21 MLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 28 ms
356,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush


def dijkstra(s, n, edge):
  inf = float("inf")
  ans = [inf] * n
  ans[s] = 0
  root = [-1] * n
  h = [[0, s]]
  while h:
    c, v = heappop(h)
    if ans[v] < c:
      continue
    for u, t in edge[v]:
      if c + t < ans[u]:
        ans[u] = c + t
        root[u] = v
        heappush(h, [c + t, u])
  return [ans, root]


h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h - 2)]
def ij(i, j): return i * w + j


edge = [[]for _ in range((h - 2) * w + 2)]
d = [
    [-1, -1],
    [-1, 0],
    [-1, 1],
    [0, -1],
    [0, 1],
    [1, -1],
    [1, 0],
    [1, 1]
]
inf = 10**10
for i in range(h - 2):
  for j in range(w):
    for di, dj in d:
      if 0 <= i + di < h - 2 and 0 <= j + dj < w:
        if a[i + di][j + dj] == -1:
          edge[ij(i, j)].append((ij(i + di, j + dj), inf))
        else:
          edge[ij(i, j)].append((ij(i + di, j + dj), a[i + di][j + dj]))
for i in range(h - 2):
  if a[i][0] == -1:
    edge[(h - 2) * w].append((ij(i, 0), inf))
  else:
    edge[(h - 2) * w].append((ij(i, 0), a[i][0]))
  edge[ij(i, w - 1)].append(((h - 2) * w + 1, 0))
ans = dijkstra((h - 2) * w, (h - 2) * w + 2, edge)[0]
if ans[(h - 2) * w + 1] >= inf: print(-1)
else: print(ans[(h - 2) * w + 1])
0