結果

問題 No.376 立方体のN等分 (2)
ユーザー 👑 obakyanobakyan
提出日時 2019-05-09 08:59:59
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2,964 ms / 5,000 ms
コード長 3,092 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 5,212 KB
実行使用メモリ 142,452 KB
最終ジャッジ日時 2023-09-14 17:40:26
合計ジャッジ時間 27,367 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 401 ms
75,976 KB
testcase_03 AC 384 ms
75,796 KB
testcase_04 AC 479 ms
142,452 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 12 ms
6,656 KB
testcase_09 AC 63 ms
20,756 KB
testcase_10 AC 259 ms
37,032 KB
testcase_11 AC 192 ms
72,056 KB
testcase_12 AC 269 ms
71,828 KB
testcase_13 AC 281 ms
71,816 KB
testcase_14 AC 317 ms
71,868 KB
testcase_15 AC 356 ms
71,780 KB
testcase_16 AC 2,597 ms
76,248 KB
testcase_17 AC 399 ms
76,000 KB
testcase_18 AC 442 ms
141,468 KB
testcase_19 AC 446 ms
141,288 KB
testcase_20 AC 464 ms
141,412 KB
testcase_21 AC 2,783 ms
141,528 KB
testcase_22 AC 480 ms
141,472 KB
testcase_23 AC 2,857 ms
141,596 KB
testcase_24 AC 2,502 ms
141,828 KB
testcase_25 AC 483 ms
141,308 KB
testcase_26 AC 2,964 ms
141,668 KB
testcase_27 AC 490 ms
141,356 KB
testcase_28 AC 491 ms
141,428 KB
testcase_29 AC 498 ms
141,372 KB
testcase_30 AC 494 ms
141,360 KB
testcase_31 AC 496 ms
141,384 KB
testcase_32 AC 497 ms
141,592 KB
testcase_33 AC 490 ms
141,372 KB
testcase_34 AC 490 ms
141,504 KB
testcase_35 AC 497 ms
141,468 KB
testcase_36 AC 499 ms
141,440 KB
testcase_37 AC 502 ms
141,488 KB
testcase_38 AC 498 ms
141,444 KB
testcase_39 AC 494 ms
141,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local mce, mfl, msq, mmi = math.ceil, math.floor, math.sqrt, math.min
local tbli = table.insert

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
      tbli(primes, i)
      local lim = mfl(x / i)
      for j = 2, lim do
        allnums[j * i] = false
      end
    end
  end
  return primes
end

local function getdivisorparts(x, primes)
  local prime_num = #primes
  local tmp = {}
  local lim = mce(msq(x))
  local primepos = 1
  local dv = primes[primepos]
  while(primepos <= prime_num and dv <= lim) do
    if(x % dv == 0) then
      local asdf = {}
      asdf.p = dv
      asdf.cnt = 1
      x = x / dv
      while(x % dv == 0) do
        x = x / dv
        asdf.cnt = asdf.cnt + 1
      end
      tbli(tmp, asdf)
      lim = mce(msq(x))
    end
    if(primepos == prime_num) then break end
    primepos = primepos + 1
    dv = primes[primepos]
  end
  if(x ~= 1) then
    local asdf = {}
    asdf.p, asdf.cnt = x, 1
    tbli(tmp, asdf)
  end
  return tmp
end

local function getdivisor(divisorparts, minlim)
  local t = {}
  local pat = 1
  local len = #divisorparts
  local allpat = 1
  for i = 1, len do
    allpat = allpat * (divisorparts[i].cnt + 1)
  end
  for t_i_pat = 0, allpat - 1 do
    local div = allpat
    local i_pat = t_i_pat
    local ret = 1
    for i = 1, len do
      div = mfl(div / (divisorparts[i].cnt + 1))
      local mul = mfl(i_pat / div)
      i_pat = i_pat % div
      for j = 1, mul do ret = ret * divisorparts[i].p end
    end
    if minlim == nil or minlim <= ret then
      tbli(t, ret)
    end
  end
  table.sort(t)
  return t
end
local retmin, retmax = n - 1, n - 1
local primes = getprimes(mce(msq(n)))
local divisorparts = getdivisorparts(n, primes)
local divisor = getdivisor(divisorparts)
local dmax = mce(n^(1/3))
local numdivisorparts = #divisorparts
local numdivisor = #divisor

for i = 1, numdivisor do
  if(dmax < divisor[i]) then break end
  local divpart = getdivisorparts(divisor[i], primes)
  local k = 1
  local numdivpart = #divpart
  for j = 1, numdivpart do
    while(k <= numdivisorparts) do
      if divpart[j].p == divisorparts[k].p then
        divisorparts[k].cnt = divisorparts[k].cnt - divpart[j].cnt
        k = k + 1
        break
      else
        k = k + 1
      end
    end
    if(numdivisorparts < k) then break end
  end

  local rem = mfl(n / divisor[i])
  local remdiv = getdivisor(divisorparts, divisor[i])
  local remlim = mce(msq(rem))
  local numremdiv = #remdiv
  for j = 1, numremdiv do
    if(remlim < remdiv[j]) then break end
    local last = mfl(rem / remdiv[j])
    retmin = mmi(retmin, divisor[i] + remdiv[j] + last - 3)
  end

  k = 1
  for j = 1, numdivpart do
    while(k <= numdivisorparts) do
      if divpart[j].p == divisorparts[k].p then
        divisorparts[k].cnt = divisorparts[k].cnt + divpart[j].cnt
        k = k + 1
        break
      else
        k = k + 1
      end
    end
    if(numdivisorparts < k) then break end
  end

end
print(retmin .. " " .. retmax)
0