結果

問題 No.2769 Number of Rhombi
ユーザー FplusFplusFFplusFplusF
提出日時 2024-05-31 22:49:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,186 ms / 5,000 ms
コード長 1,108 bytes
コンパイル時間 3,177 ms
コンパイル使用メモリ 263,380 KB
実行使用メモリ 56,832 KB
最終ジャッジ日時 2024-05-31 22:49:50
合計ジャッジ時間 23,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1,186 ms
14,976 KB
testcase_04 AC 1,104 ms
14,336 KB
testcase_05 AC 512 ms
11,392 KB
testcase_06 AC 730 ms
13,568 KB
testcase_07 AC 1,012 ms
15,744 KB
testcase_08 AC 987 ms
15,872 KB
testcase_09 AC 820 ms
15,744 KB
testcase_10 AC 655 ms
16,000 KB
testcase_11 AC 479 ms
16,512 KB
testcase_12 AC 407 ms
16,768 KB
testcase_13 AC 313 ms
17,664 KB
testcase_14 AC 310 ms
19,328 KB
testcase_15 AC 341 ms
20,480 KB
testcase_16 AC 412 ms
22,400 KB
testcase_17 AC 447 ms
24,960 KB
testcase_18 AC 525 ms
32,640 KB
testcase_19 AC 592 ms
35,456 KB
testcase_20 AC 603 ms
38,272 KB
testcase_21 AC 690 ms
44,544 KB
testcase_22 AC 702 ms
50,048 KB
testcase_23 AC 775 ms
56,832 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 311 ms
17,664 KB
testcase_26 AC 303 ms
18,688 KB
testcase_27 AC 474 ms
25,600 KB
testcase_28 AC 354 ms
21,760 KB
testcase_29 AC 618 ms
39,168 KB
testcase_30 AC 433 ms
23,424 KB
testcase_31 AC 377 ms
16,512 KB
testcase_32 AC 1,011 ms
16,000 KB
testcase_33 AC 1,039 ms
16,000 KB
testcase_34 AC 691 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
ll x[1000],y[1000];
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    map<pll,vector<pll>> mp;
    ll n;
    cin >> n;
    rep(i,n) cin >> x[i] >> y[i];
    rep(i,n){
        rep(j,i){
            mp[{x[i]+x[j],y[i]+y[j]}].emplace_back(x[j]-x[i],y[j]-y[i]);
        }
    }
    ll ans=0;
    for(auto [k,v]:mp){
        map<pll,ll> cnt;
        for(auto p:v) cnt[p]++;
        for(auto [p,c]:cnt){
            for(auto [q,d]:cnt){
                auto [ax,ay]=p;
                auto [bx,by]=q;
                if(ax*bx+ay*by==0) ans+=c*d;
            }
        }
    }
    ans/=2;
    cout << ans << '\n';
}
0