結果
問題 | No.2769 Number of Rhombi |
ユーザー | Mayimg |
提出日時 | 2024-06-01 20:08:07 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,186 ms / 5,000 ms |
コード長 | 1,241 bytes |
コンパイル時間 | 3,673 ms |
コンパイル使用メモリ | 278,900 KB |
実行使用メモリ | 65,920 KB |
最終ジャッジ日時 | 2024-06-01 20:09:04 |
合計ジャッジ時間 | 34,243 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 560 ms
46,208 KB |
testcase_04 | AC | 469 ms
40,576 KB |
testcase_05 | AC | 404 ms
28,544 KB |
testcase_06 | AC | 558 ms
35,456 KB |
testcase_07 | AC | 770 ms
43,136 KB |
testcase_08 | AC | 761 ms
45,184 KB |
testcase_09 | AC | 848 ms
49,024 KB |
testcase_10 | AC | 925 ms
54,400 KB |
testcase_11 | AC | 1,012 ms
58,624 KB |
testcase_12 | AC | 966 ms
61,824 KB |
testcase_13 | AC | 1,037 ms
64,000 KB |
testcase_14 | AC | 1,072 ms
65,408 KB |
testcase_15 | AC | 1,102 ms
65,536 KB |
testcase_16 | AC | 1,097 ms
65,664 KB |
testcase_17 | AC | 1,150 ms
65,792 KB |
testcase_18 | AC | 1,136 ms
65,792 KB |
testcase_19 | AC | 1,186 ms
65,792 KB |
testcase_20 | AC | 1,172 ms
65,792 KB |
testcase_21 | AC | 1,100 ms
65,920 KB |
testcase_22 | AC | 1,055 ms
65,792 KB |
testcase_23 | AC | 1,094 ms
65,792 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 1,094 ms
63,872 KB |
testcase_26 | AC | 1,095 ms
64,896 KB |
testcase_27 | AC | 1,116 ms
65,792 KB |
testcase_28 | AC | 1,083 ms
65,536 KB |
testcase_29 | AC | 1,118 ms
65,920 KB |
testcase_30 | AC | 1,108 ms
65,664 KB |
testcase_31 | AC | 1,072 ms
61,952 KB |
testcase_32 | AC | 742 ms
45,440 KB |
testcase_33 | AC | 750 ms
45,440 KB |
testcase_34 | AC | 997 ms
52,736 KB |
ソースコード
#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; }