結果

問題 No.2769 Number of Rhombi
ユーザー MayimgMayimg
提出日時 2024-06-01 20:08:07
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,583 ms / 5,000 ms
コード長 1,241 bytes
コンパイル時間 4,472 ms
コンパイル使用メモリ 278,712 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-12-22 08:54:15
合計ジャッジ時間 48,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 659 ms
46,208 KB
testcase_04 AC 606 ms
40,576 KB
testcase_05 AC 572 ms
28,544 KB
testcase_06 AC 784 ms
35,328 KB
testcase_07 AC 1,127 ms
43,264 KB
testcase_08 AC 1,160 ms
45,184 KB
testcase_09 AC 1,210 ms
49,024 KB
testcase_10 AC 1,352 ms
54,528 KB
testcase_11 AC 1,445 ms
58,624 KB
testcase_12 AC 1,503 ms
61,824 KB
testcase_13 AC 1,557 ms
64,000 KB
testcase_14 AC 1,583 ms
65,280 KB
testcase_15 AC 1,563 ms
65,664 KB
testcase_16 AC 1,557 ms
65,664 KB
testcase_17 AC 1,557 ms
65,536 KB
testcase_18 AC 1,545 ms
65,792 KB
testcase_19 AC 1,535 ms
65,792 KB
testcase_20 AC 1,533 ms
65,792 KB
testcase_21 AC 1,530 ms
65,664 KB
testcase_22 AC 1,516 ms
65,792 KB
testcase_23 AC 1,510 ms
65,664 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 1,508 ms
63,872 KB
testcase_26 AC 1,556 ms
64,896 KB
testcase_27 AC 1,567 ms
65,920 KB
testcase_28 AC 1,520 ms
65,536 KB
testcase_29 AC 1,567 ms
65,792 KB
testcase_30 AC 1,540 ms
65,664 KB
testcase_31 AC 1,525 ms
61,824 KB
testcase_32 AC 1,196 ms
45,440 KB
testcase_33 AC 1,220 ms
45,440 KB
testcase_34 AC 1,281 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize "O3,omit-frame-pointer,inline"
#pragma GCC push_options
#pragma GCC optimize ("unroll-loops")
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;



signed main () {
  std::ios::sync_with_stdio(false); std::cin.tie(0);
  int n;
  cin >> n;
  vector<int> x(n), y(n);
  for (int i = 0; i < n; i++) {
    cin >> x[i] >> y[i];
  }


  auto getFraction = [] (int num, int den) {
    int g = __gcd(num, den);
    num /= g;
    den /= g;
    if (den < 0) {
      num *= -1;
      den *= -1;
    }
    if (num == 0) den = 1;
    if (den == 0) num = 1;
    return make_pair(num, den);
  };

  map<tuple<int, int, int, int>, int> mp;
  for (int i = 0; i < n; i++) {
    for (int j = i + 1; j < n; j++) {
      auto [num, den] = getFraction(x[j] - x[i], y[j] - y[i]);
      int centerX = x[i] + x[j];
      int centerY = y[i] + y[j];
      mp[{num, den, centerX, centerY}]++;
    }
  }
  long long ans = 0;
  for (int i = 0; i < n; i++) {
    for (int j = i + 1; j < n; j++) {
      auto [num, den] = getFraction(-(y[i] - y[j]), x[i] - x[j]);
      int centerX = x[i] + x[j];
      int centerY = y[i] + y[j];
      ans += mp[{num, den, centerX, centerY}];
    }
  }
  cout << ans / 2 << endl;
  return 0;  
}


0