結果
問題 | No.2769 Number of Rhombi |
ユーザー |
![]() |
提出日時 | 2024-06-08 09:33:37 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 950 bytes |
コンパイル時間 | 7,815 ms |
コンパイル使用メモリ | 317,492 KB |
実行使用メモリ | 81,664 KB |
最終ジャッジ日時 | 2024-12-27 11:26:16 |
合計ジャッジ時間 | 40,223 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 WA * 26 |
ソースコード
#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; 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; ans+=m[{{dx,dy},{a+c,b+d}}]; } ans/=2; cout<<ans; }