結果

問題 No.1012 荷物収集
ユーザー 👑 obakyanobakyan
提出日時 2020-03-20 22:20:04
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 1,315 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-05-08 22:36:06
合計ジャッジ時間 16,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 481 ms
43,264 KB
testcase_05 AC 483 ms
43,136 KB
testcase_06 AC 460 ms
43,264 KB
testcase_07 AC 456 ms
43,264 KB
testcase_08 AC 478 ms
43,136 KB
testcase_09 AC 472 ms
43,264 KB
testcase_10 AC 462 ms
43,136 KB
testcase_11 AC 469 ms
43,264 KB
testcase_12 AC 472 ms
43,136 KB
testcase_13 AC 472 ms
43,136 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 520 ms
31,528 KB
testcase_25 AC 657 ms
38,732 KB
testcase_26 AC 207 ms
16,512 KB
testcase_27 AC 35 ms
5,504 KB
testcase_28 AC 610 ms
35,936 KB
testcase_29 AC 127 ms
8,960 KB
testcase_30 AC 612 ms
35,244 KB
testcase_31 AC 379 ms
23,364 KB
testcase_32 AC 204 ms
16,296 KB
testcase_33 AC 425 ms
29,892 KB
testcase_34 AC 477 ms
30,596 KB
testcase_35 AC 482 ms
30,088 KB
testcase_36 AC 521 ms
32,204 KB
testcase_37 AC 134 ms
10,112 KB
testcase_38 AC 566 ms
31,912 KB
testcase_39 AC 168 ms
15,232 KB
testcase_40 AC 256 ms
18,288 KB
testcase_41 AC 728 ms
41,396 KB
testcase_42 AC 335 ms
23,296 KB
testcase_43 AC 399 ms
27,960 KB
testcase_44 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mfl = math.floor

local function comp(a, b)
  return a[2] < b
end

local function lower_bound(ary, x)
  local num = #ary
  if num == 0 then return 1 end
  if not comp(ary[1], x) then return 1 end
  if comp(ary[num], x) then return num + 1 end
  local min, max = 1, num
  while 1 < max - min do
    local mid = mfl((min + max) / 2)
    if comp(ary[mid], x) then
      min = mid
    else
      max = mid
    end
  end
  return max
end

local n, q = io.read("*n", "*n")
local xs, ws = {}, {}
for i = 1, n do
  xs[i], ws[i] = io.read("*n", "*n")
end
local qs = {}
for i = 1, q do
  qs[i] = {}
  qs[i][1] = i
  qs[i][2] = io.read("*n")
  qs[i][3] = 0LL -- sum of xi * wi
  qs[i][4] = 0LL -- sum of wi (for multiplied by Xi)
end
qs[q + 1] = {q + 1, 1000000007, 0LL, 0LL}
table.sort(qs, function(a, b) return a[2] < b[2] end)
for i = 1, n do
  local x, w = 0LL + xs[i], 0LL + ws[i]
  local pos = lower_bound(qs, x)
  qs[1][3] = qs[1][3] + x * w
  qs[pos][3] = qs[pos][3] - 2LL * x * w
  qs[1][4] = qs[1][4] - w
  qs[pos][4] = qs[pos][4] + 2LL * w
end
for i = 2, q do
  qs[i][3] = qs[i][3] + qs[i - 1][3]
  qs[i][4] = qs[i][4] + qs[i - 1][4]
end
table.sort(qs, function(a, b) return a[1] < b[1] end)
for i = 1, q do
  local v = qs[i][3] + qs[i][2] * qs[i][4]
  local str = tostring(v):gsub("LL", "")
  print(str)
end
0