結果

問題 No.2769 Number of Rhombi
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-31 23:00:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 929 ms / 5,000 ms
コード長 1,058 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 218,628 KB
実行使用メモリ 127,104 KB
最終ジャッジ日時 2024-05-31 23:00:54
合計ジャッジ時間 24,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 393 ms
56,704 KB
testcase_04 AC 340 ms
48,000 KB
testcase_05 AC 313 ms
33,792 KB
testcase_06 AC 429 ms
42,368 KB
testcase_07 AC 543 ms
51,456 KB
testcase_08 AC 522 ms
53,632 KB
testcase_09 AC 592 ms
57,344 KB
testcase_10 AC 627 ms
62,720 KB
testcase_11 AC 680 ms
67,072 KB
testcase_12 AC 671 ms
71,168 KB
testcase_13 AC 703 ms
74,112 KB
testcase_14 AC 695 ms
78,208 KB
testcase_15 AC 733 ms
80,128 KB
testcase_16 AC 739 ms
82,304 KB
testcase_17 AC 785 ms
86,656 KB
testcase_18 AC 814 ms
96,384 KB
testcase_19 AC 839 ms
100,480 KB
testcase_20 AC 866 ms
103,552 KB
testcase_21 AC 886 ms
112,256 KB
testcase_22 AC 929 ms
118,784 KB
testcase_23 AC 928 ms
127,104 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 716 ms
74,240 KB
testcase_26 AC 687 ms
76,160 KB
testcase_27 AC 744 ms
86,784 KB
testcase_28 AC 735 ms
81,408 KB
testcase_29 AC 812 ms
104,960 KB
testcase_30 AC 742 ms
84,096 KB
testcase_31 AC 678 ms
71,040 KB
testcase_32 AC 602 ms
53,760 KB
testcase_33 AC 533 ms
53,504 KB
testcase_34 AC 633 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

    int N; cin >> N;
    vector<pair<long long,long long>> XY(N);
    for(auto &[x,y] : XY) cin >> x >> y,x *= 2, y *= 2;

    map<pair<long long,long long>,map<pair<long long,long long>,long long>> M;
    for(int i=0; i<N; i++) for(int k=i+1; k<N; k++){
        auto[x1,y1] = XY.at(i);
        auto[x2,y2] = XY.at(k);
        if(x1 > x2) swap(x1,x2),swap(y1,y2);

        long long mx = (x1+x2)/2,my = (y1+y2)/2;
        if(x1 == x2) M[{mx,my}][{0,1}]++;
        else if(y1 == y2) M[{mx,my}][{1,0}]++;
        else{
            long long dx = abs(x2-x1),dy = abs(y2-y1),g = gcd(dx,dy);
            M[{mx,my}][{(x2-x1)/g,(y2-y1)/g}]++;
        }
    }

    long long answer = 0;
    for(auto &[ig,V] : M){
        for(auto &[k,v] : V){
            auto &[x,y] = k;
            if(x < 0 || y == 0) continue;
            if(x == 0) answer += v*V[{1,0}];
            else answer += v*V[{y,-x}];
        }
    }
    cout << answer << endl;
}
0