結果

問題 No.1265 Balloon Survival
ユーザー tamura2004tamura2004
提出日時 2021-01-23 18:12:21
言語 Crystal
(1.11.2)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 12,341 ms
コンパイル使用メモリ 297,344 KB
実行使用メモリ 34,596 KB
最終ジャッジ日時 2024-06-30 22:08:01
合計ジャッジ時間 15,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 16 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 64 ms
20,624 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 15 ms
6,944 KB
testcase_21 AC 32 ms
10,460 KB
testcase_22 AC 20 ms
6,940 KB
testcase_23 AC 22 ms
6,944 KB
testcase_24 AC 125 ms
28,796 KB
testcase_25 AC 122 ms
28,076 KB
testcase_26 AC 126 ms
34,536 KB
testcase_27 AC 127 ms
34,596 KB
testcase_28 AC 126 ms
34,572 KB
testcase_29 AC 126 ms
34,592 KB
testcase_30 AC 123 ms
28,080 KB
testcase_31 AC 124 ms
34,532 KB
testcase_32 AC 124 ms
34,532 KB
testcase_33 AC 122 ms
28,160 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2点間の距離と点番号を求めて、距離の小さい順にソート
# 小さい順に取り出す
# 既に破裂した点が含まれている→何もしない
# 1番の点が含まれている->相手の点を破裂扱いにし、取り除く点に+1
# それ以外→両方の点を破裂扱いにする

n = gets.to_s.to_i
xy = Array.new(n){ gets.to_s.split.map { |v| v.to_i64 - 1} }

dists = [] of Tuple(Int64,Int32,Int32)
n.times do |i|
  n.times do |j|
    next unless i < j
    xi,yi = xy[i]
    xj,yj = xy[j]
    dist = (yi - yj) ** 2 + (xi - xj) ** 2
    dists << {dist, i, j}
  end
end

bang = Array.new(n, false)
ans = 0_i64
dists.sort.each do |d, i, j|
  next if bang[i] || bang[j]
  if i == 0
    bang[j] = true
    ans += 1
  else
    bang[i] = true
    bang[j] = true
  end
end
puts ans
0