結果

問題 No.1265 Balloon Survival
ユーザー tatt61880tatt61880
提出日時 2021-02-28 18:31:09
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 803 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 148,944 KB
実行使用メモリ 42,960 KB
最終ジャッジ日時 2024-09-16 11:41:46
合計ジャッジ時間 12,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 0 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 51 ms
8,576 KB
testcase_15 AC 38 ms
7,296 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 347 ms
24,328 KB
testcase_18 AC 21 ms
6,940 KB
testcase_19 AC 16 ms
6,944 KB
testcase_20 AC 51 ms
8,448 KB
testcase_21 AC 131 ms
13,824 KB
testcase_22 AC 74 ms
10,112 KB
testcase_23 AC 87 ms
10,752 KB
testcase_24 AC 759 ms
42,860 KB
testcase_25 AC 759 ms
42,936 KB
testcase_26 AC 766 ms
42,792 KB
testcase_27 AC 756 ms
42,876 KB
testcase_28 AC 774 ms
42,844 KB
testcase_29 AC 747 ms
42,956 KB
testcase_30 AC 766 ms
42,720 KB
testcase_31 AC 803 ms
42,872 KB
testcase_32 AC 801 ms
42,960 KB
testcase_33 AC 795 ms
42,880 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var pairs: []Pair :: #[n * (n - 1) / 2]Pair
	var x: []int :: #[n]int
	var y: []int :: #[n]int
	for i(0, n - 1)
		do x[i] :: cui@inputInt()
		do y[i] :: cui@inputInt()
	end for
	
	var idx: int :: 0
	for i(0, n - 1)
		for j(i + 1, n - 1)
			do pairs[idx] :: (#Pair).init(i, j, (x[i] - x[j]) ^ 2 + (y[i] - y[j]) ^ 2)
			do idx :+ 1
		end for
	end for
	do pairs.sort()
	
	var ans: int :: 0
	var used: []bool :: #[n]bool
	for i(0, idx - 1)
		var id1: int :: pairs[i].id1
		var id2: int :: pairs[i].id2
		if(id1 = 0)
			if(!used[id2])
				do used[id2] :: true
				do ans :+ 1
			end if
		else
			if(!used[id1] & !used[id2])
				do used[id1] :: true
				do used[id2] :: true
			end if
		end if
	end for
	do cui@print("\{ans}\n")
	
	class Pair()
		+var id1: int
		+var id2: int
		+var dist: int
		+func init(id1: int, id2: int, dist: int): Pair
			do me.id1 :: id1
			do me.id2 :: id2
			do me.dist :: dist
			ret me
		end func
		+*func cmp(t: kuin@Class): int
			ret me.dist - (t $ Pair).dist
		end func
	end class
end func
0