結果

問題 No.2328 Build Walls
ユーザー sepa38sepa38
提出日時 2023-04-13 11:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,913 ms / 3,000 ms
コード長 793 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,972 KB
最終ジャッジ日時 2024-10-09 10:24:59
合計ジャッジ時間 16,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 42 ms
52,864 KB
testcase_04 AC 43 ms
52,736 KB
testcase_05 AC 42 ms
52,736 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 43 ms
53,120 KB
testcase_08 AC 43 ms
52,992 KB
testcase_09 AC 42 ms
52,736 KB
testcase_10 AC 42 ms
52,480 KB
testcase_11 AC 43 ms
52,736 KB
testcase_12 AC 43 ms
52,864 KB
testcase_13 AC 169 ms
82,576 KB
testcase_14 AC 622 ms
80,576 KB
testcase_15 AC 409 ms
80,516 KB
testcase_16 AC 177 ms
78,080 KB
testcase_17 AC 308 ms
80,620 KB
testcase_18 AC 127 ms
76,960 KB
testcase_19 AC 59 ms
67,072 KB
testcase_20 AC 151 ms
77,568 KB
testcase_21 AC 91 ms
77,312 KB
testcase_22 AC 913 ms
81,908 KB
testcase_23 AC 1,167 ms
88,972 KB
testcase_24 AC 995 ms
88,244 KB
testcase_25 AC 1,186 ms
88,516 KB
testcase_26 AC 714 ms
88,080 KB
testcase_27 AC 920 ms
88,576 KB
testcase_28 AC 112 ms
80,384 KB
testcase_29 AC 1,180 ms
88,420 KB
testcase_30 AC 214 ms
88,064 KB
testcase_31 AC 197 ms
87,936 KB
testcase_32 AC 946 ms
88,176 KB
testcase_33 AC 1,913 ms
88,348 KB
testcase_34 AC 218 ms
88,320 KB
testcase_35 AC 1,362 ms
88,664 KB
testcase_36 AC 42 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
h, w = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h-2)]

def c(d, x, y):
  global h, w
  return d*h*w + x*w + y

def dc(num):
  global h, w
  yield num // (h * w)
  num %= (h * w)
  yield num // w
  yield num % w

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, c(a[i][0], i, 0))
while hq:
  d, x, y = dc(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, c(d+a[p][q], p, q))
print(-1)
0