結果
| 問題 |
No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2020-05-03 18:40:06 |
| 言語 | Lua (LuaJit 2.1.1734355927) |
| 結果 |
AC
|
| 実行時間 | 236 ms / 4,000 ms |
| コード長 | 2,999 bytes |
| コンパイル時間 | 114 ms |
| コンパイル使用メモリ | 6,692 KB |
| 実行使用メモリ | 28,032 KB |
| 最終ジャッジ日時 | 2024-06-22 04:09:17 |
| 合計ジャッジ時間 | 9,823 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 48 |
ソースコード
local mfl, mce = math.floor, math.ceil
local mmi, mma = math.min, math.max
local bls, brs = bit.lshift, bit.rshift
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 = {{}}
while mul < n do
mul, stagenum = mul * 2, stagenum + 1
self.stage[stagenum] = {}
end
self.stagenum = stagenum
self.left_stage = {}
for i = 1, n do
local sp, sz = 1, bls(1, stagenum - 1)
while(i - 1) % sz ~= 0 do
sp, sz = sp + 1, brs(sz, 1)
end
self.left_stage[i] = sp
end
self.sz_stage = {}
local tmp, sp = 1, stagenum
for i = 1, n do
if tmp * 2 == i then tmp, sp = tmp * 2, sp - 1 end
self.sz_stage[i] = sp
end
for i = 1, n do self.stage[stagenum][i] = i end
for i = n + 1, mul do self.stage[stagenum][i] = emptyvalue end
self:updateAll()
end
SegTree.getRange = function(self, left, right)
if left == right then return self.stage[self.stagenum][left] end
local stagenum = self.stagenum
local ret = self.emptyvalue
while left <= right do
local stage = mma(self.left_stage[left], self.sz_stage[right - left + 1])
local sz = bls(1, stagenum - stage)
ret = self.func(ret, self.stage[stage][1 + brs(left - 1, stagenum - stage)])
left = left + sz
end
return ret
end
SegTree.update = function(self, idx, value)
for i = self.stagenum - 1, 1, -1 do
local dst = brs(idx + 1, 1)
local rem = dst * 4 - 1 - idx
self.stage[i][dst] = self.func(self.stage[i + 1][idx], self.stage[i + 1][rem])
idx = dst
end
end
SegTree.new = function(n, func, emptyvalue)
local obj = {}
setmetatable(obj, {__index = SegTree})
obj:create(n, func, emptyvalue)
return obj
end
local n, k = io.read("*n", "*n")
local lim = 100000
local univ = {}
local univpos = {}
for i = 1, lim + 1 do
univ[i] = {}
univpos[i] = 1
end
for i = 1, n do
local s, p, u = io.read("*n", "*n", "*n")
table.insert(univ[u], {s, p, i - 1})
end
local function sortfunc(a, b)
if a[1] ~= b[1] then
return a[1] > b[1]
else
return a[2] < b[2]
end
end
for i = 1, lim do
table.sort(univ[i], sortfunc)
end
local function mergefunc(a, b)
if #univ[a] < univpos[a] then return b
elseif #univ[b] < univpos[b] then return a
end
local upa, upb = univpos[a], univpos[b]
local z = univ[a][upa][1] - univ[b][upb][1]
if z < 0 then
return b
elseif 0 < z then
return a
end
if upa < upb then
return a
elseif upb < upa then
return b
end
return univ[a][upa][2] < univ[b][upb][2] and a or b
end
local st = SegTree.new(lim, mergefunc, lim + 1)
for i = 1, k do
local u = st.stage[1][1]
local upos = univpos[u]
print(univ[u][upos][3])
univpos[u] = upos + 1
st:update(u)
end