結果

問題 No.2328 Build Walls
ユーザー sepa38sepa38
提出日時 2023-04-13 11:35:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 629 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 136,880 KB
最終ジャッジ日時 2024-10-09 10:30:53
合計ジャッジ時間 23,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,728 KB
testcase_01 AC 38 ms
54,080 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
52,992 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 147 ms
82,432 KB
testcase_14 AC 1,195 ms
97,740 KB
testcase_15 AC 620 ms
83,052 KB
testcase_16 AC 162 ms
78,080 KB
testcase_17 AC 397 ms
80,980 KB
testcase_18 AC 107 ms
77,152 KB
testcase_19 AC 51 ms
67,328 KB
testcase_20 AC 137 ms
77,312 KB
testcase_21 AC 78 ms
77,312 KB
testcase_22 AC 2,128 ms
131,632 KB
testcase_23 AC 2,129 ms
104,368 KB
testcase_24 AC 1,750 ms
98,492 KB
testcase_25 AC 2,004 ms
103,552 KB
testcase_26 AC 1,055 ms
91,020 KB
testcase_27 AC 1,511 ms
95,544 KB
testcase_28 AC 95 ms
80,000 KB
testcase_29 AC 2,122 ms
104,364 KB
testcase_30 AC 186 ms
88,332 KB
testcase_31 AC 163 ms
87,680 KB
testcase_32 AC 1,504 ms
95,536 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h-2)]
inf = 1 << 30
dist = [[inf] * w for _ in range(h-2)]
hq = []
for i in range(h-2):
  if a[i][0] == -1:
    continue
  heapq.heappush(hq, [a[i][0], i, 0])
while hq:
  d, x, y = heapq.heappop(hq)
  if y == w - 1:
    print(d)
    exit()
  if dist[x][y] <= d:
    continue
  dist[x][y] = d
  for p in range(max(0, x-1), min(h-2, x+2)):
    for q in range(max(0, y-1), min(w, y+2)):
      if a[p][q] == -1:
        continue
      if dist[p][q] <= d + a[p][q]:
        continue
      heapq.heappush(hq, [d+a[p][q], p, q])
print(-1)
0