結果

問題 No.1037 exhausted
ユーザー 👑 obakyanobakyan
提出日時 2020-04-25 13:45:09
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 16:05:32
合計ジャッジ時間 1,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 21 ms
5,376 KB
testcase_13 AC 19 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 39 ms
5,376 KB
testcase_16 AC 23 ms
5,376 KB
testcase_17 AC 23 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mmi, mma = math.min, math.max
local n, v, l = io.read("*n", "*n", "*n")
local dp = {}
for i = 1, v + 1 do
  dp[i] = false
end
dp[v + 1] = 0
local pos = 0
for i = 1, n do
  local x, z, w = io.read("*n", "*n", "*n")
  -- walk
  local len = x - pos
  for j = len + 1, v + 1 do
    dp[j - len] = dp[j]
  end
  for j = mma(1, v + 1 - len + 1), v + 1 do
    dp[j] = false
  end
  -- add
  for j = v, 1, -1 do
    if dp[j] then
      local dst = mmi(v + 1, j + z)
      if not dp[dst] then
        dp[dst] = dp[j] + w
      else
        dp[dst] = mmi(dp[dst], dp[j] + w)
      end
    end
  end
  pos = x
end
do
  local len = l - pos
  for j = len + 1, v + 1 do
    dp[j - len] = dp[j]
  end
  for j = mma(1, v + 1 - len + 1), v + 1 do
    dp[j] = false
  end
end
local ret = false
for i = 1, v + 1 do
  if dp[i] then
    if not ret then
      ret = dp[i]
    else
      ret = mmi(ret, dp[i])
    end
  end
end
print(ret or -1)
0