結果

問題 No.2769 Number of Rhombi
ユーザー kotatsugamekotatsugame
提出日時 2024-05-31 21:52:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 786 ms / 5,000 ms
コード長 929 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 90,844 KB
実行使用メモリ 47,104 KB
最終ジャッジ日時 2024-05-31 21:52:51
合計ジャッジ時間 10,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 100 ms
9,216 KB
testcase_04 AC 109 ms
8,704 KB
testcase_05 AC 100 ms
7,040 KB
testcase_06 AC 129 ms
8,064 KB
testcase_07 AC 162 ms
9,088 KB
testcase_08 AC 166 ms
9,088 KB
testcase_09 AC 175 ms
9,216 KB
testcase_10 AC 184 ms
9,344 KB
testcase_11 AC 193 ms
9,600 KB
testcase_12 AC 201 ms
9,984 KB
testcase_13 AC 210 ms
10,240 KB
testcase_14 AC 221 ms
10,924 KB
testcase_15 AC 240 ms
11,392 KB
testcase_16 AC 281 ms
12,160 KB
testcase_17 AC 286 ms
13,312 KB
testcase_18 AC 340 ms
16,640 KB
testcase_19 AC 378 ms
18,176 KB
testcase_20 AC 426 ms
19,712 KB
testcase_21 AC 483 ms
24,576 KB
testcase_22 AC 595 ms
30,848 KB
testcase_23 AC 786 ms
47,104 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 206 ms
10,240 KB
testcase_26 AC 212 ms
10,624 KB
testcase_27 AC 274 ms
13,440 KB
testcase_28 AC 246 ms
11,904 KB
testcase_29 AC 413 ms
20,480 KB
testcase_30 AC 263 ms
12,504 KB
testcase_31 AC 198 ms
9,984 KB
testcase_32 AC 165 ms
9,088 KB
testcase_33 AC 166 ms
9,344 KB
testcase_34 AC 208 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include<cassert>
using namespace std;
int gcd(int a,int b)
{
	while(b)
	{
		int t=a%b;
		a=b;
		b=t;
	}
	return a;
}
int N;
int X[1000],Y[1000];
map<pair<int,int>,vector<pair<int,int> > >mp1,mp2;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=0;i<N;i++)cin>>X[i]>>Y[i];
	for(int i=0;i<N;i++)for(int j=i+1;j<N;j++)
	{
		int dx=X[j]-X[i],dy=Y[j]-Y[i];
		int g=gcd(dx,dy);
		dx/=g,dy/=g;
		if(dx!=0)
		{
			if(dx<0)dx=-dx,dy=-dy;
			if(dy<0)mp1[make_pair(dx,dy)].emplace_back(X[i]+X[j],Y[i]+Y[j]);
			else mp2[make_pair(dy,-dx)].emplace_back(X[i]+X[j],Y[i]+Y[j]);
		}
		else mp1[make_pair(0,-1)].emplace_back(X[i]+X[j],Y[i]+Y[j]);
	}
	long ans=0;
	for(auto p:mp1)
	{
		auto it=mp2.find(p.first);
		if(it==mp2.end())continue;
		map<pair<int,int>,int>cnt;
		for(auto q:p.second)cnt[q]++;
		for(auto q:it->second)ans+=cnt[q];
	}
	cout<<ans<<endl;
}
0