結果

問題 No.385 カップ麺生活
ユーザー 👑 obakyan
提出日時 2019-06-03 23:10:07
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 1,525 ms / 2,000 ms
コード長 1,436 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 23:00:07
合計ジャッジ時間 2,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

local mce, mfl, msq, mmi, mma = math.ceil, math.floor, math.sqrt, math.min, math.max

local function getprimes(x)
  local primes = {}
  local allnums = {}
  for i = 1, x do allnums[i] = true end
  for i = 2, x do
    if(allnums[i]) then
      table.insert(primes, i)
      local lim = mfl(x / i)
      for j = 2, lim do
        allnums[j * i] = false
      end
    end
  end
  return primes
end

local m = io.read("*n")
local n = io.read("*n")
local c = {}
for i = 1, n do c[i] = io.read("*n") end
local primes = getprimes(m)

local t0 = -1
local t = {}
for i = 1, m - 1 do t[i] = -1 end
t[m] = 0
for i_c = 1, n do
  local cost = c[i_c]
  for i_t = 1, m do
    if 0 <= t[i_t] then
      local cnt = t[i_t]
      local t_tmp = i_t
      while cost <= t_tmp do
        cnt = cnt + 1
        if cost == t_tmp then
          if t0 == -1 then
            t0 = cnt
          else
            t0 = mma(t0, cnt)
          end
        else
          if t[t_tmp - cost] == -1 then
            t[t_tmp - cost] = cnt
          else
            t[t_tmp - cost] = mma(t[t_tmp - cost], cnt)
          end
        end
        t_tmp = t_tmp - cost
      end -- while cost <= t_tmp
    end -- 0 <= t[i_t]
  end -- for i_t
end -- for i_c
local normmax = t0
for i = 1, m do
  normmax = mma(normmax, t[i])
end
local primecost = 0
for i = 1, #primes do
  if 0 < t[primes[i]] then
    primecost = primecost + t[primes[i]]
  end
end
print(normmax + primecost)
0