結果

問題 No.1265 Balloon Survival
ユーザー tamura2004tamura2004
提出日時 2021-01-23 18:09:16
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 787 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 51,104 KB
最終ジャッジ日時 2024-06-10 01:47:45
合計ジャッジ時間 11,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,160 KB
testcase_01 AC 72 ms
12,160 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 76 ms
12,416 KB
testcase_04 AC 79 ms
12,416 KB
testcase_05 AC 74 ms
12,160 KB
testcase_06 AC 72 ms
12,288 KB
testcase_07 AC 74 ms
12,416 KB
testcase_08 AC 74 ms
12,288 KB
testcase_09 AC 74 ms
12,416 KB
testcase_10 AC 73 ms
12,160 KB
testcase_11 AC 77 ms
12,416 KB
testcase_12 AC 76 ms
12,288 KB
testcase_13 AC 73 ms
12,416 KB
testcase_14 AC 323 ms
16,128 KB
testcase_15 AC 252 ms
15,104 KB
testcase_16 AC 136 ms
12,928 KB
testcase_17 AC 1,325 ms
30,556 KB
testcase_18 AC 193 ms
13,568 KB
testcase_19 AC 147 ms
13,056 KB
testcase_20 AC 369 ms
16,128 KB
testcase_21 AC 646 ms
20,992 KB
testcase_22 AC 411 ms
17,280 KB
testcase_23 AC 457 ms
18,688 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 78 ms
12,416 KB
testcase_35 AC 74 ms
12,416 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