結果

問題 No.2353 Guardian Dogs in Spring
ユーザー shobonvipshobonvip
提出日時 2023-06-16 21:57:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 767 bytes
コンパイル時間 4,504 ms
コンパイル使用メモリ 267,540 KB
実行使用メモリ 396,944 KB
最終ジャッジ日時 2024-06-24 14:06:55
合計ジャッジ時間 26,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,944 KB
testcase_05 AC 660 ms
396,692 KB
testcase_06 AC 646 ms
396,656 KB
testcase_07 AC 656 ms
396,696 KB
testcase_08 AC 624 ms
396,660 KB
testcase_09 AC 620 ms
396,572 KB
testcase_10 AC 615 ms
396,576 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 616 ms
396,576 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 22 ms
15,904 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 19 ms
17,308 KB
testcase_25 AC 15 ms
16,296 KB
testcase_26 AC 10 ms
10,080 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 28 ms
29,104 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 688 ms
396,596 KB
testcase_34 AC 613 ms
396,604 KB
testcase_35 AC 620 ms
396,588 KB
testcase_36 AC 27 ms
28,416 KB
testcase_37 AC 11 ms
10,752 KB
testcase_38 AC 59 ms
52,820 KB
testcase_39 AC 84 ms
102,088 KB
testcase_40 AC 219 ms
200,028 KB
testcase_41 AC 265 ms
200,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n; cin >> n;
	vector<int> x(n), y(n);
	for (int i=0; i<n; i++){
		cin >> x[i] >> y[i];
	}

	cout << n/2 << endl;
	vector<tuple<int,int,int>> pq;
	for (int i=0; i<n; i++){
		for (int j=i+1; j<n; j++){
			int dist = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]);
			pq.push_back(tuple(dist, i, j));
		}
	}

	vector<bool> seen(n);
	int cnt = 0;
	for (int piv=0; piv<(int)pq.size(); piv++){
		auto [r, i, j] = pq[piv];
		if (seen[i] || seen[j]) continue;
		cout << i+1 << " " << j+1 << endl;
		seen[i] = true;
		seen[j] = true;
		cnt++;
		if (cnt == n / 2) break;
	}
	assert(cnt == n / 2);
}
0