結果

問題 No.2769 Number of Rhombi
ユーザー kusaf_kusaf_
提出日時 2024-06-04 01:38:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 760 ms / 5,000 ms
コード長 825 bytes
コンパイル時間 3,164 ms
コンパイル使用メモリ 258,480 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-06-04 01:38:42
合計ジャッジ時間 24,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 436 ms
56,960 KB
testcase_04 AC 381 ms
49,792 KB
testcase_05 AC 307 ms
34,816 KB
testcase_06 AC 396 ms
43,520 KB
testcase_07 AC 552 ms
53,120 KB
testcase_08 AC 545 ms
55,680 KB
testcase_09 AC 604 ms
60,672 KB
testcase_10 AC 622 ms
67,200 KB
testcase_11 AC 683 ms
72,576 KB
testcase_12 AC 681 ms
76,544 KB
testcase_13 AC 714 ms
79,104 KB
testcase_14 AC 689 ms
80,768 KB
testcase_15 AC 712 ms
81,024 KB
testcase_16 AC 649 ms
81,280 KB
testcase_17 AC 699 ms
81,280 KB
testcase_18 AC 665 ms
81,408 KB
testcase_19 AC 693 ms
81,536 KB
testcase_20 AC 675 ms
81,408 KB
testcase_21 AC 704 ms
81,408 KB
testcase_22 AC 742 ms
81,408 KB
testcase_23 AC 721 ms
81,408 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 760 ms
79,104 KB
testcase_26 AC 691 ms
80,256 KB
testcase_27 AC 691 ms
81,280 KB
testcase_28 AC 676 ms
81,152 KB
testcase_29 AC 697 ms
81,408 KB
testcase_30 AC 667 ms
81,408 KB
testcase_31 AC 674 ms
76,672 KB
testcase_32 AC 540 ms
56,192 KB
testcase_33 AC 549 ms
56,064 KB
testcase_34 AC 600 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void grd(ll &dx, ll &dy) {
  ll g = gcd(dx, dy);
  dx /= g, dy /= g;
  if(dx < 0) { dx *= -1, dy *= -1; }
  if(!dx) { dy = 1; }
  if(!dy) { dx = 1; }
};

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

  ll N;
  cin >> N;

  vector<ll> x(N), y(N);
  for(ll i = 0; i < N; i++) { cin >> x[i] >> y[i]; }

  map<tuple<ll, ll, ll, ll>, ll> m;
  for(ll i = 0; i < N; i++) {
    for(ll j = 0; j < i; j++) {
      ll sx = x[i] + x[j], sy = y[i] + y[j];
      ll dx = x[i] - x[j], dy = y[i] - y[j];
      grd(dx, dy);
      m[{sx, sy, dx, dy}]++;
    }
  }

  ll ans = 0;
  for(auto &[v, c] : m) {
    auto &[sx, sy, dx, dy] = v;
    ll ndx = dy, ndy = -dx;
    grd(ndx, ndy);
    ans += c * m[{sx, sy, ndx, ndy}];
  }

  cout << ans / 2 << "\n";
}
0