結果

問題 No.472 平均順位
ユーザー 👑 obakyanobakyan
提出日時 2019-05-02 11:09:05
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 13:15:00
合計ジャッジ時間 1,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 7 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 19 ms
6,820 KB
testcase_12 AC 15 ms
6,816 KB
testcase_13 AC 56 ms
6,820 KB
testcase_14 AC 129 ms
6,816 KB
testcase_15 AC 57 ms
6,816 KB
testcase_16 AC 133 ms
6,820 KB
testcase_17 AC 134 ms
6,820 KB
testcase_18 AC 11 ms
6,816 KB
testcase_19 AC 30 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local ior = io.input()
local n, p = ior:read("*n", "*n")
local t = {}
for i = 1, p + 5 do t[i] = 0 end
t[1] = 0
local curmax = 1
for i_n = 1, n do
  local a, b, c = ior:read("*n", "*n", "*n")
  t[curmax], t[curmax + 1], t[curmax + 2], t[curmax + 3]
    = t[curmax] + a, t[curmax] + b, t[curmax] + c, t[curmax] + 1
  for i = curmax - 1, 1, -1 do
    t[i + 3] = math.min(t[i + 3], t[i] + 1)
    t[i + 2] = math.min(t[i + 2], t[i] + c)
    t[i + 1] = math.min(t[i + 1], t[i] + b)
    t[i] = t[i] + a
  end
  curmax = math.min(p + 1, 3 * i_n + 1)
end
print(string.format("%.8f", t[p + 1] / n))
0