結果

問題 No.844 split game
ユーザー 👑 obakyanobakyan
提出日時 2019-06-30 00:34:48
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-07-02 05:43:03
合計ジャッジ時間 7,072 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
11,520 KB
testcase_01 AC 68 ms
10,240 KB
testcase_02 AC 241 ms
20,736 KB
testcase_03 AC 152 ms
16,128 KB
testcase_04 AC 75 ms
9,984 KB
testcase_05 AC 237 ms
21,376 KB
testcase_06 AC 57 ms
8,704 KB
testcase_07 AC 44 ms
8,448 KB
testcase_08 AC 28 ms
5,632 KB
testcase_09 AC 186 ms
16,768 KB
testcase_10 AC 266 ms
21,632 KB
testcase_11 AC 247 ms
21,504 KB
testcase_12 AC 185 ms
16,768 KB
testcase_13 AC 109 ms
11,264 KB
testcase_14 AC 92 ms
11,008 KB
testcase_15 AC 285 ms
23,040 KB
testcase_16 AC 273 ms
23,040 KB
testcase_17 AC 270 ms
22,912 KB
testcase_18 AC 268 ms
23,040 KB
testcase_19 AC 266 ms
23,040 KB
testcase_20 AC 280 ms
23,040 KB
testcase_21 AC 278 ms
23,040 KB
testcase_22 AC 270 ms
23,040 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 17 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 15 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 15 ms
5,376 KB
testcase_30 AC 17 ms
5,376 KB
testcase_31 AC 15 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 24 ms
5,376 KB
testcase_34 AC 14 ms
5,376 KB
testcase_35 AC 29 ms
5,376 KB
testcase_36 AC 17 ms
5,376 KB
testcase_37 AC 43 ms
6,528 KB
testcase_38 AC 99 ms
10,496 KB
testcase_39 AC 203 ms
18,816 KB
testcase_40 AC 45 ms
7,680 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 1 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 1 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, m, a = io.read("*n", "*n", "*n")
local t = {}
for i = 1, m do
  t[i] = {}
  t[i].l, t[i].r, t[i].p = io.read("*n", "*n", "*n")
end
table.sort(t, function(x, y)
  if x.r ~= y.r then
    return x.r < y.r
  else
    return x.l < y.l
  end
end)

local mma = math.max
local ret = {}
local inf = -100000000000000
for i = 1, n do ret[i] = inf end
local curmax = {}
local curpos = 1
for i = 1, n do curmax[i] = 0 end
for i = 1, m do
  local l, r, p = t[i].l, t[i].r, t[i].p
  if curpos ~= r then
    for k = curpos + 1, r do
      curmax[k] = mma(curmax[k], curmax[k - 1])
    end
    curpos = r
  end
  local cost = r == n and 0 or a
  if l == 1 then
    ret[r] = mma(ret[r], p - cost)
  else
    -- print(i, l, r, p, ret[l - 1])
    if ret[l - 1] == inf then
      -- ret[r] = mma(ret[r], -a + p - cost)
      ret[l - 1] = curmax[l - 1] - a
    end
    ret[r] = mma(ret[r], mma(curmax[l - 1] - a, ret[l - 1]) + p - cost)
  end
  curmax[r] = mma(curmax[r], ret[r])
end
local tot = 0
for i = 1, n do
  -- print(i, ret[i])
  tot = mma(tot, ret[i])
end
print(tot)
0