結果

問題 No.2769 Number of Rhombi
ユーザー Today03Today03
提出日時 2024-05-31 22:34:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,264 bytes
コンパイル時間 3,882 ms
コンパイル使用メモリ 226,624 KB
実行使用メモリ 164,096 KB
最終ジャッジ日時 2024-12-21 00:18:59
合計ジャッジ時間 106,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
124,196 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 AC 2,729 ms
48,256 KB
testcase_04 AC 3,151 ms
34,816 KB
testcase_05 AC 2,242 ms
24,576 KB
testcase_06 AC 3,071 ms
30,208 KB
testcase_07 AC 3,967 ms
36,352 KB
testcase_08 AC 3,609 ms
38,784 KB
testcase_09 AC 2,929 ms
43,776 KB
testcase_10 AC 2,285 ms
52,352 KB
testcase_11 AC 1,952 ms
61,824 KB
testcase_12 AC 1,827 ms
72,320 KB
testcase_13 AC 2,031 ms
82,688 KB
testcase_14 AC 2,156 ms
95,360 KB
testcase_15 AC 2,360 ms
98,560 KB
testcase_16 AC 2,625 ms
102,400 KB
testcase_17 AC 3,037 ms
106,112 KB
testcase_18 AC 4,340 ms
111,360 KB
testcase_19 AC 4,876 ms
112,768 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 1,856 ms
83,072 KB
testcase_26 AC 2,021 ms
90,496 KB
testcase_27 AC 3,076 ms
106,496 KB
testcase_28 AC 2,556 ms
101,504 KB
testcase_29 TLE -
testcase_30 AC 2,816 ms
103,936 KB
testcase_31 AC 1,742 ms
72,960 KB
testcase_32 AC 3,547 ms
39,168 KB
testcase_33 AC 3,529 ms
38,912 KB
testcase_34 AC 2,416 ms
164,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N;
    cin >> N;
    vector<pair<ll, ll>> XY(N);
    for (int i = 0; i < N; i++) {
        cin >> XY[i].first >> XY[i].second;
    }

    map<ll, map<int, vector<int>>> mp;
    for (int i = 0; i < N; i++) {
        for (int j = i + 1; j < N; j++) {
            ll dx = XY[j].first - XY[i].first;
            ll dy = XY[j].second - XY[i].second;
            ll d = dx * dx + dy * dy;
            mp[d][i].push_back(j);
            mp[d][j].push_back(i);
        }
    }

    ll ans = 0;
    for (auto [k, G] : mp) {
        for (int i = 0; i < N; i++) {
            if (G[i].size() < 2) continue;
            queue<tuple<int, int, int>> Q;
            Q.push({i, 0, -1});
            while (!Q.empty()) {
                auto [now, c, pre] = Q.front();
                Q.pop();
                for (auto nxt : G[now]) {
                    if (nxt == pre) continue;
                    if (c == 3) {
                        if (nxt == i) ans++;
                        continue;
                    }
                    Q.push({nxt, c + 1, now});
                }
            }
        }
    }

    cout << ans / 8 << endl;
}
0