結果

問題 No.2769 Number of Rhombi
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-05-08 19:16:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,444 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 216,912 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-12-15 01:59:10
合計ジャッジ時間 28,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 782 ms
54,400 KB
testcase_11 AC 807 ms
58,752 KB
testcase_12 AC 843 ms
61,952 KB
testcase_13 AC 835 ms
63,872 KB
testcase_14 AC 885 ms
65,280 KB
testcase_15 AC 894 ms
65,536 KB
testcase_16 AC 910 ms
65,664 KB
testcase_17 AC 904 ms
65,664 KB
testcase_18 AC 892 ms
65,792 KB
testcase_19 AC 896 ms
65,664 KB
testcase_20 AC 889 ms
65,792 KB
testcase_21 AC 870 ms
65,792 KB
testcase_22 AC 907 ms
65,792 KB
testcase_23 AC 879 ms
65,920 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 836 ms
63,872 KB
testcase_26 AC 872 ms
64,896 KB
testcase_27 AC 919 ms
65,792 KB
testcase_28 AC 879 ms
65,536 KB
testcase_29 AC 895 ms
65,792 KB
testcase_30 AC 855 ms
65,664 KB
testcase_31 AC 830 ms
61,824 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 750 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 (q == 0) p = 1;
        if (p == 0) q = 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;
        if (mp[{xx, yy, q}] * b > 100){
            cout << mp[{xx, yy, q}] * b << endl;
        }
    }

    cout << ans/2 << endl;

    return 0;
}
0