結果

問題 No.2355 Unhappy Back Dance
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-16 23:25:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,759 ms / 6,000 ms
コード長 1,159 bytes
コンパイル時間 1,360 ms
コンパイル使用メモリ 120,180 KB
実行使用メモリ 144,128 KB
最終ジャッジ日時 2024-06-24 16:44:00
合計ジャッジ時間 32,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 42 ms
6,940 KB
testcase_07 AC 41 ms
6,940 KB
testcase_08 AC 42 ms
6,940 KB
testcase_09 AC 42 ms
6,944 KB
testcase_10 AC 1,024 ms
73,984 KB
testcase_11 AC 928 ms
74,112 KB
testcase_12 AC 44 ms
6,944 KB
testcase_13 AC 44 ms
6,944 KB
testcase_14 AC 976 ms
74,112 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2,747 ms
144,128 KB
testcase_17 AC 2,759 ms
144,128 KB
testcase_18 AC 2,741 ms
144,128 KB
testcase_19 AC 2,743 ms
144,128 KB
testcase_20 AC 2,698 ms
144,128 KB
testcase_21 AC 808 ms
62,208 KB
testcase_22 AC 110 ms
14,336 KB
testcase_23 AC 103 ms
15,104 KB
testcase_24 AC 2,283 ms
130,432 KB
testcase_25 AC 1,186 ms
71,808 KB
testcase_26 AC 1,204 ms
72,064 KB
testcase_27 AC 931 ms
63,232 KB
testcase_28 AC 10 ms
6,940 KB
testcase_29 AC 24 ms
6,940 KB
testcase_30 AC 2,077 ms
120,960 KB
testcase_31 AC 1,545 ms
89,088 KB
testcase_32 AC 68 ms
11,904 KB
testcase_33 AC 697 ms
52,096 KB
testcase_34 AC 5 ms
6,944 KB
testcase_35 AC 11 ms
6,944 KB
testcase_36 AC 879 ms
63,232 KB
testcase_37 AC 411 ms
35,328 KB
testcase_38 AC 536 ms
42,624 KB
testcase_39 AC 395 ms
34,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

int main(){

    ll N, ans=0, dx, dy;
    cin >> N;
    vector<map<pair<ll, ll>, 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++){
            dx = x[i]-x[j];
            dy = y[i]-y[j];
            ll g = gcd(dx, dy);
            if (g == 0){
                if (dx == 0){
                    dx = 0;
                    dy /= abs(dy);
                }
                else{
                    dx /= abs(dx);
                    dy = 0;
                }
            }
            else{
                dx /= g;
                dy /= g;
            }
            v[i][{dx, dy}]++;
            v[j][{-dx, -dy}]++;
        }
    }

    for (int i=0; i<N; i++){
        bool f=0;
        for (auto [x, y] : v[i]) if (y >= 2) f=1;
        ans += f;
    }

    cout << ans << endl;

    return 0;
}
0