結果

問題 No.2328 Build Walls
ユーザー tyawanmusityawanmusi
提出日時 2023-05-24 10:12:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,279 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 359,248 KB
最終ジャッジ日時 2024-06-06 03:36:31
合計ジャッジ時間 55,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 39 ms
53,120 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 39 ms
52,992 KB
testcase_05 AC 40 ms
53,248 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 40 ms
53,248 KB
testcase_09 AC 39 ms
53,120 KB
testcase_10 AC 39 ms
53,248 KB
testcase_11 AC 40 ms
52,736 KB
testcase_12 AC 40 ms
52,864 KB
testcase_13 AC 1,553 ms
219,648 KB
testcase_14 AC 775 ms
142,104 KB
testcase_15 AC 887 ms
147,680 KB
testcase_16 AC 250 ms
92,288 KB
testcase_17 AC 1,142 ms
171,704 KB
testcase_18 AC 116 ms
78,804 KB
testcase_19 AC 253 ms
94,396 KB
testcase_20 AC 176 ms
83,656 KB
testcase_21 AC 1,073 ms
192,628 KB
testcase_22 AC 1,158 ms
173,192 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 2,314 ms
328,064 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2,745 ms
343,732 KB
testcase_32 TLE -
testcase_33 AC 2,777 ms
329,600 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 39 ms
53,120 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