結果

問題 No.1265 Balloon Survival
ユーザー 👑 obakyanobakyan
提出日時 2020-11-17 23:11:38
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 1,089 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-07-23 08:32:31
合計ジャッジ時間 12,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 70 ms
6,944 KB
testcase_15 AC 47 ms
6,944 KB
testcase_16 AC 18 ms
6,940 KB
testcase_17 AC 465 ms
27,264 KB
testcase_18 AC 27 ms
6,940 KB
testcase_19 AC 20 ms
6,944 KB
testcase_20 AC 66 ms
6,944 KB
testcase_21 AC 180 ms
10,752 KB
testcase_22 AC 95 ms
9,216 KB
testcase_23 AC 107 ms
9,472 KB
testcase_24 AC 1,023 ms
34,560 KB
testcase_25 AC 1,087 ms
34,560 KB
testcase_26 AC 1,049 ms
34,560 KB
testcase_27 AC 1,020 ms
34,432 KB
testcase_28 AC 1,061 ms
34,560 KB
testcase_29 AC 1,032 ms
34,560 KB
testcase_30 AC 1,040 ms
34,560 KB
testcase_31 AC 1,089 ms
34,560 KB
testcase_32 AC 1,035 ms
34,560 KB
testcase_33 AC 1,028 ms
34,560 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mma = math.max
local mfl, mce, mmi = math.floor, math.ceil, math.min

local n = io.read("*n")

local x, y = {}, {}
for i = 1, n do
  x[i], y[i] = io.read("*n", "*n")
end
if n == 1 then print(0) os.exit() end

local function lensq(i, j)
  return (1LL * x[i] - x[j]) * (1LL * x[i] - x[j]) + (1LL * y[i] - y[j]) * (1LL * y[i] - y[j])
end
local e1, e2 = {}, {}
local v = {}
local alive = {}
for i = 1, n do alive[i] = true end

local c = 0

local idxes = {}

for i = 1, n - 1 do
  for j = i + 1, n do
    c = c + 1
    e1[c], e2[c] = i, j
    v[c] = lensq(i, j)
    idxes[c] = c
  end
end
table.sort(idxes, function(a, b) return v[a] < v[b] end)
local ret = 0
for i = 1, c do
  local idx = idxes[i]
  local z1, z2 = e1[idx], e2[idx]
  if z1 == 1 then
    if alive[z2] then
      ret = ret + 1
      alive[z2] = false
    end
  else
    if alive[z1] and alive[z2] then
      alive[z1], alive[z2] = false, false
    end
  end
end
print(ret)
0