結果

問題 No.2355 Unhappy Back Dance
ユーザー umezoumezo
提出日時 2023-06-16 22:41:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,994 ms / 6,000 ms
コード長 1,843 bytes
コンパイル時間 8,870 ms
コンパイル使用メモリ 483,788 KB
実行使用メモリ 355,712 KB
最終ジャッジ日時 2024-06-24 15:29:32
合計ジャッジ時間 71,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 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 24 ms
6,940 KB
testcase_07 AC 30 ms
6,944 KB
testcase_08 AC 788 ms
6,944 KB
testcase_09 AC 922 ms
6,944 KB
testcase_10 AC 1,998 ms
179,584 KB
testcase_11 AC 1,771 ms
179,968 KB
testcase_12 AC 776 ms
6,940 KB
testcase_13 AC 808 ms
6,944 KB
testcase_14 AC 3,022 ms
179,968 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 4,890 ms
355,712 KB
testcase_17 AC 4,949 ms
355,584 KB
testcase_18 AC 4,843 ms
355,584 KB
testcase_19 AC 4,884 ms
355,584 KB
testcase_20 AC 4,994 ms
355,712 KB
testcase_21 AC 1,773 ms
150,528 KB
testcase_22 AC 262 ms
30,720 KB
testcase_23 AC 293 ms
32,768 KB
testcase_24 AC 4,469 ms
321,280 KB
testcase_25 AC 2,190 ms
174,720 KB
testcase_26 AC 2,171 ms
175,488 KB
testcase_27 AC 1,738 ms
153,216 KB
testcase_28 AC 25 ms
6,944 KB
testcase_29 AC 70 ms
11,520 KB
testcase_30 AC 4,053 ms
297,600 KB
testcase_31 AC 2,786 ms
217,728 KB
testcase_32 AC 197 ms
24,576 KB
testcase_33 AC 1,363 ms
125,312 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 28 ms
7,168 KB
testcase_36 AC 1,703 ms
153,216 KB
testcase_37 AC 849 ms
83,328 KB
testcase_38 AC 1,082 ms
101,760 KB
testcase_39 AC 814 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()

#include <boost/multiprecision/cpp_dec_float.hpp>
#include <boost/multiprecision/cpp_int.hpp>
namespace mp = boost::multiprecision;
using ll = mp::cpp_int;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<ll> X(n),Y(n);
  rep(i,n) cin>>X[i]>>Y[i];
  vector<pair<ll,ll>> P(n);
  rep(i,n) P[i]={X[i],Y[i]};
  sort(ALL(P));
  
  map<ll,set<int>> m1,m2;
  rep(i,n){
    m1[X[i]].insert(i);
    m2[Y[i]].insert(i);
  }
  set<int> ANS;
  for(auto [a,b]:m1){
    if(b.size()>3){
      for(auto x:b) ANS.insert(x);
    }
    else if(b.size()==3){
      vector<int> T;
      for(auto x:b) T.push_back(x);
      ANS.insert(T[0]);
      ANS.insert(T[2]);
    }
  }
  for(auto [a,b]:m2){
    if(b.size()>3){
      for(auto x:b) ANS.insert(x);
    }
    else if(b.size()==3){
      vector<int> T;
      for(auto x:b) T.push_back(x);
      ANS.insert(T[0]);
      ANS.insert(T[2]);
    }
  }
  map<pair<pair<ll,ll>,pair<ll,ll>>,set<int>> m3;
  for(int i=0;i<n;i++){
    ll xi=P[i].first,yi=P[i].second;
    for(int j=i+1;j<n;j++){
      ll xj=P[j].first,yj=P[j].second;
      if(xi==xj || yi==yj) continue;
      ll dx=xi-xj,dy=yi-yj;
      if(dx<0) dx=-dx,dy=-dy;
      ll g=gcd(dx,dy);
      dx/=g,dy/=g;
      
      ll da=xi*yj-xj*yi,db=xi-xj;
      if(db<0) da=-da,db=-db;
      ll gg=gcd(da,db);
      da/=gg,db/=gg;
      m3[{{dx,dy},{da,db}}].insert(i);
      m3[{{dx,dy},{da,db}}].insert(j);
    }
  }
  for(auto [a,b]:m3){
    if(b.size()>3){
      for(auto x:b) ANS.insert(x);
    }
    else if(b.size()==3){
      vector<int> T;
      for(auto x:b) T.push_back(x);
      ANS.insert(T[0]);
      ANS.insert(T[2]);
    }
  }
  cout<<ANS.size()<<endl;
    
  return 0;
}
0