結果

問題 No.190 Dry Wet Moist
ユーザー 👑 obakyanobakyan
提出日時 2022-04-03 19:19:05
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 11,992 KB
最終ジャッジ日時 2024-05-03 04:09:16
合計ジャッジ時間 3,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 88 ms
6,944 KB
testcase_13 AC 107 ms
8,488 KB
testcase_14 AC 83 ms
6,940 KB
testcase_15 AC 116 ms
8,436 KB
testcase_16 AC 146 ms
8,484 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 70 ms
6,940 KB
testcase_19 AC 143 ms
8,488 KB
testcase_20 AC 99 ms
7,460 KB
testcase_21 AC 13 ms
6,940 KB
testcase_22 AC 144 ms
6,940 KB
testcase_23 AC 199 ms
11,992 KB
testcase_24 AC 153 ms
9,488 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 106 ms
7,460 KB
testcase_28 AC 50 ms
6,944 KB
testcase_29 AC 65 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n") * 2
local a = {}
for i = 1, n do a[i] = io.read("*n") end
table.sort(a)
local right = n
local minus = 0
for i = 1, n do
  local ai = a[i]
  while i < right and 0 <= ai + a[right] do
    right = right - 1
  end
  if right <= i then break end
  minus = minus + 1
  right = right - 1
end
local plus = 0
local left = 1
for i = n, 1, -1 do
  local ai = a[i]
  while left < i and a[left] + ai <= 0 do
    left = left + 1
  end
  if i <= left then break end
  plus = plus + 1
  left = left + 1
end

local am = {}
for i = 1, n do
  local ai = a[i]
  if not am[ai] then
    am[ai] = 1
  else
    am[ai] = am[ai] + 1
  end
end
local center = 0
for k, v in pairs(am) do
  if k == 0 then
    center = center + math.floor(v / 2)
  elseif 0 < k then
    if am[-k] then
      center = center + math.min(v, am[-k])
    end
  end
end
print(minus .. " " .. plus .. " " .. center)
0