結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 obakyanobakyan
提出日時 2020-04-25 09:12:28
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 2,595 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 75,976 KB
最終ジャッジ日時 2024-04-24 19:10:59
合計ジャッジ時間 39,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,362 ms
52,096 KB
testcase_01 AC 356 ms
38,400 KB
testcase_02 AC 643 ms
41,820 KB
testcase_03 AC 45 ms
7,296 KB
testcase_04 AC 77 ms
12,032 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 190 ms
25,244 KB
testcase_08 AC 141 ms
22,012 KB
testcase_09 AC 859 ms
45,556 KB
testcase_10 AC 867 ms
44,824 KB
testcase_11 AC 874 ms
45,656 KB
testcase_12 AC 866 ms
45,052 KB
testcase_13 AC 1,761 ms
75,976 KB
testcase_14 AC 1,871 ms
75,188 KB
testcase_15 AC 1,666 ms
72,764 KB
testcase_16 AC 1,729 ms
73,044 KB
testcase_17 AC 1,733 ms
73,720 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 1,637 ms
72,504 KB
testcase_23 AC 1,104 ms
49,120 KB
testcase_24 AC 1,775 ms
75,536 KB
testcase_25 AC 1,484 ms
61,596 KB
testcase_26 AC 1,821 ms
62,404 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 645 ms
40,692 KB
testcase_39 TLE -
testcase_40 AC 1,212 ms
49,136 KB
testcase_41 AC 1,667 ms
53,100 KB
testcase_42 AC 1,653 ms
53,076 KB
testcase_43 AC 1,654 ms
53,100 KB
testcase_44 AC 1,714 ms
53,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl, mce = math.floor, math.ceil
local mmi, mma = math.min, math.max
local bls, brs = bit.lshift, bit.rshift
local ffi = require("ffi")

local function getgcd(x, y)
  if x == 0LL then return y end
  if y == 0LL then return x end
  while 0LL < x do
    x, y = y % x, x
  end
  return y
end
local function lltonumber(str)
  if #str < 10 then
    return 1LL * tonumber(str)
  else
    local v1 = str:sub(#str - 8, #str)
    local v2 = str:sub(1, #str - 9)
    return 1000000000LL * tonumber(v2) + tonumber(v1)
  end
end

local SegTree = {}
SegTree.updateAll = function(self)
  for i = self.stagenum - 1, 1, -1 do
    local cnt = bls(1, i - 1)
    for j = 1, cnt do
      self.stage[i][j] = self.func(self.stage[i + 1][j * 2 - 1], self.stage[i + 1][j * 2])
    end
  end
end
SegTree.create = function(self, n, func, emptyvalue)
  self.func, self.emptyvalue = func, emptyvalue
  local stagenum, mul = 1, 1
  self.stage = {}
  self.stage[1] = ffi.new("int64_t[?]", 2)
  while mul < n do
    mul, stagenum = mul * 2, stagenum + 1
    self.stage[stagenum] = ffi.new("int64_t[?]", mul + 1)
  end
  self.stagenum = stagenum
  -- for i = 1, mul do self.stage[stagenum][i] = emptyvalue end
end
SegTree.setSilent = function(self, idx, value)
  self.stage[self.stagenum][idx] = value
end
SegTree.right_bound = function(self, left, right)
  local ret, retpos = self.emptyvalue, left - 1
  local stage, l, r = 1, left, right
  local stagenum = self.stagenum
  while true do
    local sz = bls(1, stagenum - stage)
    while (l - 1) % sz ~= 0 or r + 1 - l < sz do
      stage = stage + 1
      sz = bls(1, stagenum - stage)
    end
    local tmp = self.func(ret, self.stage[stage][mce(l / sz)])
    if 1LL < tmp then
      ret, retpos = tmp, l + sz - 1
      if retpos == right then break end
      if l + sz <= r then stage, l, r = 1, l + sz, r
      else break end
    else
      if sz ~= 1 then stage, l, r = stage + 1, l, l + sz - 2
      else break end
    end
  end
  return retpos + 1
end
SegTree.new = function(n, func, emptyvalue)
  local obj = {}
  setmetatable(obj, {__index = SegTree})
  obj:create(n, func, emptyvalue)
  return obj
end


local n = io.read("*n", "*l")
local s = io.read()
local st = SegTree.new(n, getgcd, 0LL)
do
  local i = 1
  for w in s:gmatch("%d+") do
    -- st.stage[st.stagenum][i] = lltonumber(w)
    st:setSilent(i, lltonumber(w))
    i = i + 1
  end
end
-- print(os.clock())
st:updateAll()
-- print(os.clock())
local ret = 0
local z = n
for i = n, 1, -1 do
  local p = st:right_bound(i, z)
  ret = ret + n + 1 - p
  z = mmi(p, n)
end
print(ret)
-- print(os.clock())
0