結果
問題 | No.2769 Number of Rhombi |
ユーザー | srjywrdnprkt |
提出日時 | 2024-05-08 19:23:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 603 ms / 5,000 ms |
コード長 | 1,486 bytes |
コンパイル時間 | 2,773 ms |
コンパイル使用メモリ | 219,828 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-05-08 20:48:01 |
合計ジャッジ時間 | 19,882 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 299 ms
33,152 KB |
testcase_04 | AC | 277 ms
30,976 KB |
testcase_05 | AC | 255 ms
22,528 KB |
testcase_06 | AC | 336 ms
27,776 KB |
testcase_07 | AC | 503 ms
33,408 KB |
testcase_08 | AC | 468 ms
34,048 KB |
testcase_09 | AC | 527 ms
35,712 KB |
testcase_10 | AC | 528 ms
37,888 KB |
testcase_11 | AC | 568 ms
39,680 KB |
testcase_12 | AC | 603 ms
41,088 KB |
testcase_13 | AC | 561 ms
41,984 KB |
testcase_14 | AC | 600 ms
42,240 KB |
testcase_15 | AC | 564 ms
42,240 KB |
testcase_16 | AC | 582 ms
42,368 KB |
testcase_17 | AC | 564 ms
42,496 KB |
testcase_18 | AC | 550 ms
42,368 KB |
testcase_19 | AC | 568 ms
42,496 KB |
testcase_20 | AC | 590 ms
42,368 KB |
testcase_21 | AC | 569 ms
42,496 KB |
testcase_22 | AC | 566 ms
42,368 KB |
testcase_23 | AC | 570 ms
42,496 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 547 ms
41,856 KB |
testcase_26 | AC | 554 ms
42,112 KB |
testcase_27 | AC | 572 ms
42,496 KB |
testcase_28 | AC | 553 ms
42,496 KB |
testcase_29 | AC | 558 ms
42,368 KB |
testcase_30 | AC | 559 ms
42,496 KB |
testcase_31 | AC | 563 ms
40,960 KB |
testcase_32 | AC | 449 ms
34,048 KB |
testcase_33 | AC | 470 ms
33,920 KB |
testcase_34 | AC | 520 ms
36,992 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; //fraction (p/q) struct fraction{ ll p, q; fraction(ll P=0, ll Q=1) : p(P), q(Q) { ll g = gcd(P, Q); p /= g; q /= g; if (q < 0){ p *= -1; q *= -1; } if (q == 0) p = 1; if (p == 0) q = 1; } bool operator < (const fraction & other) const{ if (p < 0) return -p*other.q > -other.p*q; return p*other.q < other.p*q; } bool operator == (const fraction & other) const{ return p*other.q == other.p*q; } bool operator > (const fraction & other) const{ if (p < 0) return -p*other.q < -other.p*q; return p*other.q > other.p*q; } pair<ll, ll> top() const{ return {p, q}; } }; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll N, ans=0, s, t, a, b, c, d; cin >> N; vector<ll> x(N), y(N); for (int i=0; i<N; i++) cin >> x[i] >> y[i]; map<tuple<ll, ll, ll, ll>, ll> mp; for (int i=0; i<N; i++){ for (int j=i+1; j<N; j++){ fraction p(y[i]-y[j], x[i]-x[j]); tie(s, t) = p.top(); mp[{x[i]+x[j], y[i]+y[j], s, t}]++; } } for (auto &[g, h] : mp){ tie(a, b, c, d) = g; fraction q = fraction(-d, c); tie(s, t) = q.top(); if (mp.count({a, b, s, t})) ans += mp[{a, b, s, t}] * h; } cout << ans/2 << endl; return 0; }