結果

問題 No.1265 Balloon Survival
ユーザー 小野寺健小野寺健
提出日時 2021-11-02 10:32:18
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 496 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-10-11 08:46:00
合計ジャッジ時間 10,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
17,536 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 92 ms
12,288 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 90 ms
12,032 KB
testcase_10 AC 92 ms
12,160 KB
testcase_11 AC 90 ms
12,160 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 89 ms
12,032 KB
testcase_14 AC 380 ms
15,872 KB
testcase_15 AC 298 ms
14,720 KB
testcase_16 AC 159 ms
12,928 KB
testcase_17 AC 1,552 ms
28,800 KB
testcase_18 AC 200 ms
13,312 KB
testcase_19 AC 170 ms
13,056 KB
testcase_20 AC 373 ms
15,744 KB
testcase_21 AC 761 ms
20,352 KB
testcase_22 AC 485 ms
16,512 KB
testcase_23 AC 530 ms
17,408 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:25: warning: assigned but unused variable - d
Syntax OK

ソースコード

diff #

n = gets.to_i
xy = []
n.times {
	xy << gets.split(" ").map{|s| s.to_i}
}

dist = []

0.upto(n-1) {|i|
	xi, yi = xy[i]
	(i+1).upto(n-1) {|j|
		xj, yj = xy[j]
		d = (xi-xj)**2 + (yi-yj)**2
		dist << [d, i, j]
	}
}

dist.sort!

alive = Array.new(n, true)
alive_n = n
remove = 0

while alive_n > 1 do
	d, i, j = dist.shift
	if i == 0 and alive[j] then
		remove += 1
		alive[j] = false
		alive_n -= 1
	elsif alive[i] and alive[j] then
		alive[i] = alive[j] = false
		alive_n -= 2
	end
end

puts remove
0