結果

問題 No.1265 Balloon Survival
ユーザー tamura2004tamura2004
提出日時 2021-01-23 18:09:16
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 787 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-12-31 08:42:43
合計ジャッジ時間 38,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
19,104 KB
testcase_01 AC 93 ms
56,192 KB
testcase_02 AC 94 ms
19,232 KB
testcase_03 AC 94 ms
56,576 KB
testcase_04 AC 92 ms
19,232 KB
testcase_05 AC 92 ms
56,320 KB
testcase_06 AC 92 ms
18,976 KB
testcase_07 AC 94 ms
56,320 KB
testcase_08 AC 94 ms
18,976 KB
testcase_09 AC 93 ms
56,320 KB
testcase_10 AC 92 ms
18,980 KB
testcase_11 AC 91 ms
56,576 KB
testcase_12 AC 93 ms
18,980 KB
testcase_13 AC 91 ms
57,856 KB
testcase_14 AC 398 ms
23,076 KB
testcase_15 AC 307 ms
58,880 KB
testcase_16 AC 167 ms
19,872 KB
testcase_17 AC 1,642 ms
76,416 KB
testcase_18 AC 213 ms
20,392 KB
testcase_19 AC 182 ms
13,184 KB
testcase_20 AC 399 ms
15,872 KB
testcase_21 AC 807 ms
21,120 KB
testcase_22 AC 517 ms
17,408 KB
testcase_23 AC 563 ms
18,560 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 93 ms
12,160 KB
testcase_35 AC 94 ms
56,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

n = gets.to_s.to_i
x = []
y = []
n.times do |i|
  x[i], y[i] = gets.to_s.split.map { |v| v.to_i - 1 }
end

dists = []
n.times do |i|
  n.times do |j|
    next unless i < j
    dist = (y[i] - y[j]) ** 2 + (x[i] - x[j]) ** 2
    dists << [dist, i, j]
  end
end

bang = Array.new(n) { false }
ans = 0
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