結果

問題 No.2769 Number of Rhombi
ユーザー t98slidert98slider
提出日時 2024-05-31 22:35:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 1,218 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 214,376 KB
実行使用メモリ 35,488 KB
最終ジャッジ日時 2024-05-31 22:36:38
合計ジャッジ時間 16,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 316 ms
34,728 KB
testcase_04 AC 296 ms
33,144 KB
testcase_05 AC 263 ms
28,944 KB
testcase_06 AC 342 ms
30,684 KB
testcase_07 AC 464 ms
34,676 KB
testcase_08 AC 434 ms
34,764 KB
testcase_09 AC 433 ms
34,564 KB
testcase_10 AC 460 ms
34,668 KB
testcase_11 AC 436 ms
34,624 KB
testcase_12 AC 437 ms
35,488 KB
testcase_13 AC 428 ms
35,232 KB
testcase_14 AC 429 ms
34,568 KB
testcase_15 AC 431 ms
34,804 KB
testcase_16 AC 418 ms
34,964 KB
testcase_17 AC 412 ms
34,748 KB
testcase_18 AC 441 ms
34,704 KB
testcase_19 AC 406 ms
34,664 KB
testcase_20 AC 407 ms
35,056 KB
testcase_21 AC 398 ms
34,740 KB
testcase_22 AC 397 ms
34,652 KB
testcase_23 AC 387 ms
34,752 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 427 ms
35,276 KB
testcase_26 AC 420 ms
34,652 KB
testcase_27 AC 438 ms
34,712 KB
testcase_28 AC 412 ms
34,708 KB
testcase_29 AC 404 ms
34,776 KB
testcase_30 AC 414 ms
34,712 KB
testcase_31 AC 434 ms
35,064 KB
testcase_32 AC 431 ms
35,004 KB
testcase_33 AC 429 ms
34,844 KB
testcase_34 AC 461 ms
34,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<pair<ll,ll>> a(n);
    for(auto &&[x, y] : a){
        cin >> x >> y;
        x *= 2, y *= 2;
    }
    vector<tuple<ll,ll,ll,ll>> b, c;
    for(int i = 0; i < n; i++){
        auto &&[x1, y1] = a[i];
        for(int j = i + 1; j < n; j++){
            auto &&[x2, y2] = a[j];
            ll dx = x2 - x1;
            ll dy = y2 - y1;
            ll g = gcd(abs(dx), abs(dy));
            dx /= g, dy /= g;
            if(dx < 0) dx *= -1, dy *= -1;
            if(dx == 0) dy = abs(dy);
            if(dy == 0) dx = abs(dx);
            b.emplace_back((x1 + x2) / 2, (y1 + y2) / 2, dx, dy);
            dy *= -1;
            swap(dx, dy);
            if(dx < 0) dx *= -1, dy *= -1;
            if(dx == 0) dy = abs(dy);
            if(dy == 0) dx = abs(dx);
            c.emplace_back((x1 + x2) / 2, (y1 + y2) / 2, dx, dy);
        }
    }
    sort(c.begin(), c.end());
    ll ans = 0;
    for(auto &&tup : b){
        ans += upper_bound(c.begin(), c.end(), tup)
            - lower_bound(c.begin(), c.end(), tup);
    }
    cout << ans / 2 << '\n';
}
0