結果

問題 No.2769 Number of Rhombi
ユーザー tnakao0123tnakao0123
提出日時 2024-06-15 22:28:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,002 ms / 5,000 ms
コード長 1,502 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 66,048 KB
実行使用メモリ 42,364 KB
最終ジャッジ日時 2024-06-15 22:29:08
合計ジャッジ時間 30,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 427 ms
34,976 KB
testcase_04 AC 497 ms
32,476 KB
testcase_05 AC 455 ms
25,348 KB
testcase_06 AC 659 ms
28,864 KB
testcase_07 AC 840 ms
34,904 KB
testcase_08 AC 912 ms
35,508 KB
testcase_09 AC 952 ms
36,808 KB
testcase_10 AC 962 ms
38,572 KB
testcase_11 AC 976 ms
40,004 KB
testcase_12 AC 973 ms
41,092 KB
testcase_13 AC 1,002 ms
41,520 KB
testcase_14 AC 985 ms
42,068 KB
testcase_15 AC 955 ms
42,048 KB
testcase_16 AC 983 ms
42,248 KB
testcase_17 AC 947 ms
42,288 KB
testcase_18 AC 968 ms
42,192 KB
testcase_19 AC 964 ms
42,236 KB
testcase_20 AC 934 ms
42,204 KB
testcase_21 AC 943 ms
42,204 KB
testcase_22 AC 941 ms
42,152 KB
testcase_23 AC 927 ms
42,228 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 966 ms
41,628 KB
testcase_26 AC 996 ms
41,908 KB
testcase_27 AC 975 ms
42,168 KB
testcase_28 AC 950 ms
42,124 KB
testcase_29 AC 962 ms
42,348 KB
testcase_30 AC 985 ms
42,364 KB
testcase_31 AC 988 ms
41,016 KB
testcase_32 AC 855 ms
35,388 KB
testcase_33 AC 857 ms
35,460 KB
testcase_34 AC 904 ms
37,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2769.cc:  No.2769 Number of Rhombi - yukicoder
 */

#include<cstdio>
#include<map>
#include<algorithm>
#include<tuple>
 
using namespace std;

/* constant */

const int MAX_N = 1000;
const int MAX_M = MAX_N * (MAX_N - 1) / 2;

/* typedef */

using ll = long long;
using tp4 = tuple<int,int,int,int>;
using mtp4i = map<tp4,int>;

/* global variables */

int xs[MAX_N], ys[MAX_N];
tp4 es[MAX_M];

/* subroutines */

template <typename T>
T gcd(T m, T n) {  // m >= 0, n >= 0
  if (m < n) swap(m, n);
  while (n > 0) {
    T r = m % n;
    m = n;
    n = r;
  }
  return m;
}

void normalize(int &x, int &y) {
  if (x == 0) y = 1;
  else if (y == 0) x = 1;
  else if (x < 0) x = -x, y = -y;
}

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d%d", xs + i, ys + i);

  mtp4i ecs;
  int m = 0;
  for (int i = 0; i < n; i++)
    for (int j = i + 1; j < n; j++) {
      int cx = xs[i] + xs[j], cy = ys[i] + ys[j];
      int dx = xs[j] - xs[i], dy = ys[j] - ys[i];
      if (dx == 0) dy = 1;
      int g = gcd(abs(dx), abs(dy));
      if (g > 1) dx /= g, dy /= g;
      normalize(dx, dy);

      tp4 e(cx, cy, dx, dy);
      ecs[e]++;
      es[m++] = e;
    }

  ll sum = 0;
  for (int i = 0; i < m; i++) {
    auto [cx, cy, dx, dy] = es[i];
    int rx = -dy, ry = dx;
    normalize(rx, ry);

    auto mit = ecs.find(tp4(cx, cy, rx, ry));
    if (mit != ecs.end()) sum += mit->second;
  }

  printf("%lld\n", sum / 2);
  
  return 0;
}
0