結果

問題 No.1265 Balloon Survival
ユーザー mamimume____momamimume____mo
提出日時 2020-11-29 18:44:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 181,928 KB
実行使用メモリ 13,020 KB
最終ジャッジ日時 2024-09-13 02:03:47
合計ジャッジ時間 4,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 60 ms
12,824 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 13 ms
6,940 KB
testcase_21 AC 28 ms
6,944 KB
testcase_22 AC 18 ms
6,940 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 120 ms
13,020 KB
testcase_25 AC 117 ms
11,796 KB
testcase_26 AC 115 ms
12,572 KB
testcase_27 AC 117 ms
12,820 KB
testcase_28 AC 117 ms
11,744 KB
testcase_29 AC 116 ms
12,188 KB
testcase_30 AC 119 ms
12,728 KB
testcase_31 AC 119 ms
11,800 KB
testcase_32 AC 121 ms
12,740 KB
testcase_33 AC 117 ms
12,032 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
	priority_queue<tuple<ll,int,int>,vector<tuple<ll,int,int>>,greater<tuple<ll,int,int>>> que;

	int N;
	cin >> N;
	vector<ll> x(N);
	vector<ll> y(N);
	for(int i = 0;i < N;i++){
		cin >> x[i] >> y[i];
	}

	for(int i = 0;i < N-1;i++){
		for(int j = i+1;j < N;j++){
			ll x1 = x[i];
			ll x2 = x[j];
			ll y1 = y[i];
			ll y2 = y[j];
			que.push(make_tuple((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2),i,j));
		}
	}

	vector<bool> used(N,false);
	int cnt = 0;
	while(que.size()){
		ll d,i,j;
		tie(d,i,j) = que.top();
		que.pop();
		if(used[i] || used[j])continue;
		if(i == 0 || j == 0){
			cnt++;
			used[max(i,j)] = true;
		}
		else used[i] = used[j] = true;
	}

	cout << cnt << endl;
}
0