結果

問題 No.614 壊れたキャンパス
ユーザー 👑 obakyanobakyan
提出日時 2019-05-06 19:30:28
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 2,856 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 5,336 KB
実行使用メモリ 120,420 KB
最終ジャッジ日時 2023-09-10 11:40:07
合計ジャッジ時間 13,411 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 964 ms
67,528 KB
testcase_09 AC 1,028 ms
64,000 KB
testcase_10 AC 1,136 ms
114,704 KB
testcase_11 AC 896 ms
62,200 KB
testcase_12 AC 936 ms
62,324 KB
testcase_13 AC 908 ms
62,276 KB
testcase_14 AC 1,006 ms
68,048 KB
testcase_15 AC 1,011 ms
89,352 KB
testcase_16 AC 1,008 ms
72,176 KB
testcase_17 AC 615 ms
120,420 KB
testcase_18 AC 711 ms
43,344 KB
testcase_19 AC 786 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local ior = io.input()
local n, m, k, s, t = ior:read("*n", "*n", "*n", "*n", "*n")
local mmi, mab = math.min, math.abs
local rawbridge, bridge = {}, {}
local buildpos = {}
for i = 1, n - 1 do rawbridge[i], bridge[i] = {}, {} end
for i = 1, n do buildpos[i] = {} end
table.insert(buildpos[1], s)
table.insert(buildpos[n], t)
local bposadded = {}
for i = 1, n do bposadded[i] = {} end
bposadded[1][s] = true
bposadded[n][t] = true
for i = 1, m do
  local a, b, c = ior:read("*n", "*n", "*n")
  local tmp = {}
  tmp.b, tmp.c = b, c
  table.insert(rawbridge[a], tmp)
  if(not bposadded[a][b]) then
    table.insert(buildpos[a], b)
    bposadded[a][b] = true
  end
  if(not bposadded[a + 1][c]) then
    table.insert(buildpos[a + 1], c)
    bposadded[a + 1][c] = true
  end
end

local nodecost = {}
for i = 1, n do
  table.sort(buildpos[i])
  nodecost[i] = {}
  for j = 1, #buildpos[i] do nodecost[i][j] = -1 end
end

local function find_build_pos_idx_from_floor(buildnum, tgtfloor)
  local min, max = 1, #buildpos[buildnum]
  while(true) do
    local mid = math.floor((min + max) / 2)
    local midfl = buildpos[buildnum][mid]
    if(tgtfloor < midfl) then max = mid - 1
    elseif(midfl < tgtfloor) then min = mid + 1
    else return mid
    end
  end
end

for i_b = 1, n - 1 do
  local rbn = #rawbridge[i_b]
  for i_br = 1, rbn do
    local src = find_build_pos_idx_from_floor(i_b, rawbridge[i_b][i_br].b)
    local dst = find_build_pos_idx_from_floor(i_b + 1, rawbridge[i_b][i_br].c)
    if(bridge[i_b][src] == nil) then bridge[i_b][src] = {} end
    table.insert(bridge[i_b][src], dst)
  end
end

local firstidx = find_build_pos_idx_from_floor(1, s)
local lastidx = find_build_pos_idx_from_floor(n, t)
nodecost[1][firstidx] = 0

for bnum = 1, n do
  local posnum = #buildpos[bnum]
  for i_pos = 1, posnum - 1 do
    if(0 <= nodecost[bnum][i_pos]) then
      local candval = nodecost[bnum][i_pos] + buildpos[bnum][i_pos + 1] - buildpos[bnum][i_pos]
      if(nodecost[bnum][i_pos + 1] == -1 or candval < nodecost[bnum][i_pos + 1]) then
        nodecost[bnum][i_pos + 1] = candval
      end
    end
  end
  for i_pos = posnum, 2, -1 do
    if(0 <= nodecost[bnum][i_pos]) then
      local candval = nodecost[bnum][i_pos] + buildpos[bnum][i_pos] - buildpos[bnum][i_pos - 1]
      if(nodecost[bnum][i_pos - 1] == -1 or candval < nodecost[bnum][i_pos - 1]) then
        nodecost[bnum][i_pos - 1] = candval
      end
    end
  end
  if(bnum ~= n) then
    for i_pos = 1, posnum do
      if(bridge[bnum][i_pos] ~= nil) then
        for i_br = 1, #bridge[bnum][i_pos] do
          local i_nx = bridge[bnum][i_pos][i_br]
          if(nodecost[bnum + 1][i_nx] == -1 or nodecost[bnum][i_pos] < nodecost[bnum + 1][i_nx]) then
            nodecost[bnum + 1][i_nx] = nodecost[bnum][i_pos]
          end
        end
      end
    end
  end
end
print(nodecost[n][lastidx])
0