結果
問題 | No.2355 Unhappy Back Dance |
ユーザー | srjywrdnprkt |
提出日時 | 2023-06-16 23:19:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,384 bytes |
コンパイル時間 | 1,149 ms |
コンパイル使用メモリ | 120,592 KB |
実行使用メモリ | 144,128 KB |
最終ジャッジ日時 | 2024-06-24 16:33:39 |
合計ジャッジ時間 | 32,880 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 62 ms
6,940 KB |
testcase_07 | AC | 61 ms
6,940 KB |
testcase_08 | AC | 70 ms
6,940 KB |
testcase_09 | AC | 69 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 71 ms
6,940 KB |
testcase_13 | AC | 71 ms
6,940 KB |
testcase_14 | AC | 662 ms
73,856 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2,813 ms
144,128 KB |
testcase_17 | AC | 2,814 ms
144,128 KB |
testcase_18 | AC | 2,802 ms
144,128 KB |
testcase_19 | AC | 2,827 ms
144,128 KB |
testcase_20 | AC | 2,879 ms
144,128 KB |
testcase_21 | AC | 898 ms
62,208 KB |
testcase_22 | AC | 114 ms
14,336 KB |
testcase_23 | AC | 124 ms
15,104 KB |
testcase_24 | AC | 2,380 ms
130,432 KB |
testcase_25 | AC | 1,233 ms
71,936 KB |
testcase_26 | AC | 1,226 ms
72,064 KB |
testcase_27 | AC | 916 ms
63,232 KB |
testcase_28 | AC | 12 ms
6,944 KB |
testcase_29 | AC | 29 ms
6,944 KB |
testcase_30 | AC | 2,166 ms
120,960 KB |
testcase_31 | AC | 1,568 ms
89,088 KB |
testcase_32 | AC | 84 ms
11,904 KB |
testcase_33 | AC | 726 ms
52,096 KB |
testcase_34 | AC | 5 ms
6,944 KB |
testcase_35 | AC | 13 ms
6,944 KB |
testcase_36 | AC | 918 ms
63,104 KB |
testcase_37 | AC | 417 ms
35,328 KB |
testcase_38 | AC | 555 ms
42,624 KB |
testcase_39 | AC | 409 ms
34,304 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; using ll = long long; struct fraction{ long long p, q; fraction(long long P=0, long long Q=1) : p(P), q(Q) { if (Q < 0){ p *= -1; q *= -1; } long long g=gcd(abs(p), abs(q)); p /= g; q /= g; } 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.p) && (q == other.q); } bool operator > (const fraction & other) const{ if (p < 0) return -p*other.q < -other.p*q; return p*other.q > other.p*q; } }; int main(){ ll N, ans=0; cin >> N; vector<map<fraction, ll>> v(N); vector<ll> x(N), y(N); for (int i=0; i<N; i++) cin >> x[i] >> y[i]; for (int i=0; i<N; i++){ for (int j=i+1; j<N; j++){ v[i][fraction(x[i]-x[j], y[i]-y[j])]++; v[j][fraction(x[j]-x[i], y[j]-y[i])]++; } } for (int i=0; i<N; i++){ for (auto [x, y] : v[i]) if (y >= 2) ans++; } cout << ans << endl; return 0; }