結果
問題 | No.2769 Number of Rhombi |
ユーザー | Nzt3 |
提出日時 | 2024-06-01 15:23:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 702 ms / 5,000 ms |
コード長 | 888 bytes |
コンパイル時間 | 2,279 ms |
コンパイル使用メモリ | 214,340 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-12-22 01:06:02 |
合計ジャッジ時間 | 23,496 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 369 ms
33,152 KB |
testcase_04 | AC | 339 ms
30,848 KB |
testcase_05 | AC | 317 ms
22,400 KB |
testcase_06 | AC | 452 ms
27,648 KB |
testcase_07 | AC | 579 ms
33,408 KB |
testcase_08 | AC | 616 ms
34,176 KB |
testcase_09 | AC | 612 ms
35,712 KB |
testcase_10 | AC | 634 ms
37,888 KB |
testcase_11 | AC | 667 ms
39,552 KB |
testcase_12 | AC | 680 ms
40,960 KB |
testcase_13 | AC | 691 ms
41,856 KB |
testcase_14 | AC | 685 ms
42,368 KB |
testcase_15 | AC | 697 ms
42,368 KB |
testcase_16 | AC | 700 ms
42,496 KB |
testcase_17 | AC | 694 ms
42,368 KB |
testcase_18 | AC | 701 ms
42,496 KB |
testcase_19 | AC | 698 ms
42,496 KB |
testcase_20 | AC | 702 ms
42,368 KB |
testcase_21 | AC | 687 ms
42,368 KB |
testcase_22 | AC | 688 ms
42,496 KB |
testcase_23 | AC | 678 ms
42,496 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 682 ms
41,728 KB |
testcase_26 | AC | 688 ms
42,112 KB |
testcase_27 | AC | 671 ms
42,368 KB |
testcase_28 | AC | 685 ms
42,368 KB |
testcase_29 | AC | 689 ms
42,368 KB |
testcase_30 | AC | 683 ms
42,368 KB |
testcase_31 | AC | 677 ms
40,832 KB |
testcase_32 | AC | 590 ms
33,920 KB |
testcase_33 | AC | 594 ms
33,920 KB |
testcase_34 | AC | 640 ms
36,864 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; constexpr int MOD=998244353; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define replr(i,l,r) for(int i=(l);i<(int)(r);i++) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; vector P(N,array<ll,2>()); for(auto &i:P)cin>>i[0]>>i[1]; map<array<ll,4>,ll>cnt; rep(i,N){ replr(j,i+1,N){ ll x=P[i][0]-P[j][0],y=P[i][1]-P[j][1],g=gcd(x,y); x/=g,y/=g; if(y<0)x*=-1,y*=-1; if(x<0)x*=-1,y*=-1; array<ll,4>a={P[i][0]+P[j][0],P[i][1]+P[j][1],x,y}; cnt[a]+=1; } } ll ans=0; for(auto i:cnt){ ll x=i.first[3],y=-i.first[2]; if(y<0)x*=-1,y*=-1; if(x<0)x*=-1,y*=-1; if(cnt.find(array<ll,4>({i.first[0],i.first[1],x,y}))!=cnt.end()){ ans+=i.second*cnt[array<ll,4>({i.first[0],i.first[1],x,y})]; } } cout<<ans/2<<'\n'; }