結果

問題 No.2769 Number of Rhombi
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-01-07 01:15:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 822 ms / 5,000 ms
コード長 1,345 bytes
コンパイル時間 2,621 ms
コンパイル使用メモリ 216,360 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-12-15 03:25:39
合計ジャッジ時間 24,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 338 ms
46,208 KB
testcase_04 AC 306 ms
40,576 KB
testcase_05 AC 297 ms
28,672 KB
testcase_06 AC 392 ms
35,584 KB
testcase_07 AC 558 ms
43,136 KB
testcase_08 AC 584 ms
45,312 KB
testcase_09 AC 647 ms
49,024 KB
testcase_10 AC 664 ms
54,400 KB
testcase_11 AC 734 ms
58,624 KB
testcase_12 AC 757 ms
61,824 KB
testcase_13 AC 758 ms
64,000 KB
testcase_14 AC 775 ms
65,408 KB
testcase_15 AC 779 ms
65,408 KB
testcase_16 AC 822 ms
65,792 KB
testcase_17 AC 780 ms
65,664 KB
testcase_18 AC 773 ms
65,920 KB
testcase_19 AC 770 ms
65,920 KB
testcase_20 AC 776 ms
65,920 KB
testcase_21 AC 780 ms
65,920 KB
testcase_22 AC 784 ms
65,920 KB
testcase_23 AC 785 ms
65,920 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 771 ms
64,000 KB
testcase_26 AC 773 ms
64,896 KB
testcase_27 AC 784 ms
65,792 KB
testcase_28 AC 783 ms
65,536 KB
testcase_29 AC 772 ms
65,920 KB
testcase_30 AC 791 ms
65,792 KB
testcase_31 AC 767 ms
61,952 KB
testcase_32 AC 600 ms
45,440 KB
testcase_33 AC 604 ms
45,440 KB
testcase_34 AC 654 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

//fraction (p/q)
struct fraction{
    int p, q;
    fraction(int P=0, int Q=1) : p(P), q(Q) {
        int g = gcd(P, Q);
        p /= g; q /= g;
        if (q < 0){
            p *= -1;
            q *= -1;
        }
        if (p == 0) q = 1;
        if (q == 0) p = 1;
    }
    bool operator < (const fraction & other) const{
        if (p < 0) return -p*other.q > -other.p*q;
        return p*other.q < other.p*q;
    }
    bool operator == (const fraction & other) const{
        return p*other.q == other.p*q;
    }
    bool operator > (const fraction & other) const{
        if (p < 0) return -p*other.q < -other.p*q;
        return p*other.q > other.p*q;
    }
};


int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int N, ans=0;
    cin >> N;
    vector<int> x(N), y(N);
    for (int i=0; i<N; i++) cin >> x[i] >> y[i];
    
    map<tuple<int, int, fraction>, int> mp;
    for (int i=0; i<N; i++){
        for (int j=i+1; j<N; j++){
            fraction p(y[i]-y[j], x[i]-x[j]);
            mp[{x[i]+x[j], y[i]+y[j], p}]++;
        }
    }

    for (auto &[a, b] : mp){
        fraction p, q;
        int xx, yy;
        tie(xx, yy, p) = a;
        q = fraction(-p.q, p.p);
        ans += mp[{xx, yy, q}] * b;
    }

    cout << ans/2 << endl;

    return 0;
}
0