結果

問題 No.2355 Unhappy Back Dance
ユーザー kumakumakumakuma
提出日時 2023-05-14 01:58:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,356 ms / 6,000 ms
コード長 1,811 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 211,584 KB
実行使用メモリ 44,544 KB
最終ジャッジ日時 2024-05-07 03:58:26
合計ジャッジ時間 19,957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 64 ms
44,288 KB
testcase_07 AC 110 ms
44,288 KB
testcase_08 AC 131 ms
44,288 KB
testcase_09 AC 128 ms
44,416 KB
testcase_10 AC 224 ms
44,416 KB
testcase_11 AC 228 ms
44,416 KB
testcase_12 AC 144 ms
44,416 KB
testcase_13 AC 145 ms
44,288 KB
testcase_14 AC 249 ms
44,288 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1,323 ms
44,288 KB
testcase_17 AC 1,356 ms
44,416 KB
testcase_18 AC 1,354 ms
44,544 KB
testcase_19 AC 1,355 ms
44,416 KB
testcase_20 AC 1,354 ms
44,416 KB
testcase_21 AC 548 ms
18,816 KB
testcase_22 AC 104 ms
6,656 KB
testcase_23 AC 109 ms
6,656 KB
testcase_24 AC 1,205 ms
40,576 KB
testcase_25 AC 636 ms
24,576 KB
testcase_26 AC 661 ms
24,576 KB
testcase_27 AC 576 ms
18,816 KB
testcase_28 AC 14 ms
5,376 KB
testcase_29 AC 31 ms
5,376 KB
testcase_30 AC 1,118 ms
38,016 KB
testcase_31 AC 811 ms
29,440 KB
testcase_32 AC 76 ms
6,144 KB
testcase_33 AC 447 ms
17,408 KB
testcase_34 AC 6 ms
5,376 KB
testcase_35 AC 15 ms
5,376 KB
testcase_36 AC 559 ms
18,816 KB
testcase_37 AC 292 ms
13,952 KB
testcase_38 AC 366 ms
16,000 KB
testcase_39 AC 297 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include <atcoder/modint>
#define rng(a) a.begin(),a.end()
#define rrng(a) a.rbegin(),a.rend()
#define INF 2000000000000000000
#define ll long long
#define ull unsigned long long
#define ld long double
#define pll pair<ll, ll>
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const double PI = 3.141592653589793238462643383279;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  ll N;
  cin >> N;
  vector<ll> X(N), Y(N);
  for (ll i = 0; i < N; ++i) {
    cin >> X.at(i) >> Y.at(i);

  }
  //y = ax + b
  //gradient = a = dy / dx
  //{dx, dy}
  vector<vector<pll>> gradient(N);
  for (ll i = 0; i < N; ++i) {
    for (ll j = 0; j < N; ++j) {
      if (i == j) {
        continue;
      }
      ll dx = X.at(i) - X.at(j), dy = Y.at(i) - Y.at(j);
      if (dx == 0) {
        if (dy >= 0) {
          gradient.at(i).push_back({INF, 0});
        }
        else {
          gradient.at(i).push_back({-INF, 0});
        }
      }
      else {
        // if (dx < 0) {
        //   dx = -dx;
        //   dy = -dy;
        // }
        ll gcd = abs(__gcd(dx, dy));
        gradient.at(i).push_back({dx / gcd, dy / gcd});
      }
    }
  }
  ll ans = 0;
  for (ll i = 0; i < N; ++i) {
    sort(rng(gradient.at(i)));
    // cout << "i" << i << "\n";
    // for (ll j = 0; j < gradient.at(i).size(); ++j) {
    //   cout << gradient.at(i).at(j).first << " " << gradient.at(i).at(j).second << "\n";
    // }
    // cout << "\n";
    for (ll j = 0; j < (ll)gradient.at(i).size() - 1; ++j) {
      if (gradient.at(i).at(j) == gradient.at(i).at(j + 1)) {
        ans += 1;
        break;
      }
    }
  }
  cout << ans << "\n";
}
0