結果

問題 No.2355 Unhappy Back Dance
ユーザー random contestantrandom contestant
提出日時 2023-06-16 22:50:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 920 ms / 6,000 ms
コード長 1,118 bytes
コンパイル時間 4,739 ms
コンパイル使用メモリ 269,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 15:46:01
合計ジャッジ時間 17,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

// #define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
#define rep(i,n) for (ll i = 0; i < (n); ++i)
using vl = vector<ll>;
using vvl = vector<vl>;
using P = pair<ll,ll>;
#define pb push_back
#define int long long
#define double long double
#define INF (ll) 3e18
// Ctrl + Shift + B コンパイル
// Ctrl + C 中断
// ./m 実行


signed main(){
  int n; cin >> n;
  vector<P> xy(n);
  rep(i,n) cin >> xy[i].first >> xy[i].second;
  int ans = 0;
  for(auto [nx, ny] : xy){
    set<P> st;
    for(auto [x, y] : xy){
      x -= nx;
      y -= ny;
      if (x == 0 && y == 0) continue;
      if (x == 0) {
        st.emplace(0, y/abs(y));
        continue;
      }
      if (y == 0){
        st.emplace(x/abs(x), 0);
        continue;
      }
      int g = gcd(x, y);
      x /= g;
      y /= g;
      st.emplace(x, y);
    }
    if (st.size() != n-1) ans++;
  }
  cout << ans << endl;
}

// 自身を原点として、各ダンサーへのベクトルを取得し、
// 同じベクトルのダンサーが二人居れば不幸。
0