結果
| 問題 |
No.2769 Number of Rhombi
|
| コンテスト | |
| ユーザー |
たたき@競プロ
|
| 提出日時 | 2024-06-08 10:07:15 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1,681 ms / 5,000 ms |
| コード長 | 994 bytes |
| コンパイル時間 | 6,739 ms |
| コンパイル使用メモリ | 317,220 KB |
| 実行使用メモリ | 81,536 KB |
| 最終ジャッジ日時 | 2024-12-27 12:46:02 |
| 合計ジャッジ時間 | 46,514 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<ll,ll>;
#define sr string
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
int n;cin>>n;
vc<pp>v(n); rep(i,n)cin>>v[i].fi>>v[i].se;
map<pair<pp,pp>,int>m;
rep(i,n)rep(j,i){
auto [a,b]=v[i];
auto [c,d]=v[j];
ll dx=a-c,dy=b-d;
if(dx<0)dx=-dx,dy=-dy;
ll g=gcd(dx,dy);
dx/=g,dy/=g;
if(dx==0)dy=1;
m[{{dx,dy},{a+c,b+d}}]++;
}
ll ans=0;
rep(i,n)rep(j,i){
auto [a,b]=v[i];
auto [c,d]=v[j];
ll dx=a-c,dy=b-d;
swap(dx,dy);
dx=-dx;
if(dx<0)dx=-dx,dy=-dy;
ll g=gcd(dx,dy);
dx/=g,dy/=g;
if(dx==0)dy=1;
ans+=m[{{dx,dy},{a+c,b+d}}];
}
ans/=2;
cout<<ans;
}
たたき@競プロ