結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー 👑 obakyanobakyan
提出日時 2021-05-24 09:02:58
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-10-12 16:01:10
合計ジャッジ時間 21,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 391 ms
27,904 KB
testcase_19 AC 370 ms
26,496 KB
testcase_20 AC 178 ms
16,896 KB
testcase_21 AC 22 ms
5,248 KB
testcase_22 AC 193 ms
18,176 KB
testcase_23 AC 17 ms
5,248 KB
testcase_24 AC 297 ms
23,680 KB
testcase_25 AC 189 ms
17,408 KB
testcase_26 AC 60 ms
8,064 KB
testcase_27 AC 17 ms
5,248 KB
testcase_28 AC 414 ms
30,080 KB
testcase_29 AC 394 ms
30,080 KB
testcase_30 AC 409 ms
30,080 KB
testcase_31 AC 389 ms
30,080 KB
testcase_32 AC 407 ms
29,952 KB
testcase_33 AC 391 ms
29,952 KB
testcase_34 AC 408 ms
29,952 KB
testcase_35 AC 411 ms
29,952 KB
testcase_36 AC 406 ms
30,080 KB
testcase_37 AC 413 ms
30,080 KB
testcase_38 AC 403 ms
30,208 KB
testcase_39 AC 390 ms
30,080 KB
testcase_40 AC 397 ms
30,080 KB
testcase_41 AC 407 ms
30,080 KB
testcase_42 AC 416 ms
29,952 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local a = {}
for i = 1, n do
  a[i] = {io.read("*n")}
end
for i = 1, n do
  a[i][2] = io.read("*n")
end
table.sort(a, function(x, y) return x[1] < y[1] end)
local ret = 0LL
local retpos = a[1][1]
local bias = 0LL
local ang = 0LL

for i = 1, n do
  ang = ang - a[i][2]
  bias = bias + a[i][2] * a[i][1]
end
do
  local x = a[1][1]
  ret = ang * x + bias
end
for i = 1, n - 1 do
  ang = ang + 2 * a[i][2]
  bias = bias - 2 * a[i][2] * a[i][1]
  local x = a[i + 1][1]
  local z = ang * x + bias
  if z < ret then
    ret = z
    retpos = x
  end
end
local str = tostring(ret):gsub("LL", "")
print(retpos .. " " .. str)
0