結果

問題 No.1037 exhausted
ユーザー 👑 obakyanobakyan
提出日時 2020-04-25 13:42:24
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 911 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 81,948 KB
最終ジャッジ日時 2024-04-24 16:00:35
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 2 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 2 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 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 24 ms
5,376 KB
testcase_13 AC 21 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 41 ms
5,376 KB
testcase_16 AC 25 ms
5,376 KB
testcase_17 AC 23 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 23 ms
5,376 KB
testcase_20 AC 17 ms
5,376 KB
testcase_21 AC 49 ms
5,376 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 = 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 = 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