結果

問題 No.461 三角形はいくつ?
ユーザー fumofumofunifumofumofuni
提出日時 2022-08-30 00:04:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,178 ms / 5,000 ms
コード長 2,334 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 211,232 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 12:40:09
合計ジャッジ時間 16,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 307 ms
5,376 KB
testcase_06 AC 160 ms
5,376 KB
testcase_07 AC 195 ms
5,376 KB
testcase_08 AC 134 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 43 ms
5,376 KB
testcase_11 AC 226 ms
5,376 KB
testcase_12 AC 106 ms
5,376 KB
testcase_13 AC 347 ms
5,376 KB
testcase_14 AC 315 ms
5,376 KB
testcase_15 AC 332 ms
5,376 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 595 ms
5,376 KB
testcase_19 AC 612 ms
5,376 KB
testcase_20 AC 368 ms
5,376 KB
testcase_21 AC 355 ms
5,376 KB
testcase_22 AC 352 ms
5,376 KB
testcase_23 AC 65 ms
5,376 KB
testcase_24 AC 58 ms
5,376 KB
testcase_25 AC 1,140 ms
5,376 KB
testcase_26 AC 1,131 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 6 ms
5,376 KB
testcase_29 AC 1,136 ms
5,376 KB
testcase_30 AC 1,178 ms
5,376 KB
testcase_31 AC 1,037 ms
5,376 KB
testcase_32 AC 980 ms
5,376 KB
testcase_33 AC 6 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 6 ms
5,376 KB
testcase_36 AC 131 ms
5,376 KB
testcase_37 AC 115 ms
5,376 KB
testcase_38 AC 119 ms
5,376 KB
testcase_39 AC 103 ms
5,376 KB
testcase_40 AC 133 ms
5,376 KB
testcase_41 AC 119 ms
5,376 KB
testcase_42 AC 383 ms
5,376 KB
testcase_43 AC 382 ms
5,376 KB
testcase_44 AC 360 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#pragma GCC optimize("O3")


#define rep(i,n) for(ll i=0;i<n;i++)
#define repl(i,l,r) for(ll i=(l);i<(r);i++)
#define per(i,n) for(ll i=(n)-1;i>=0;i--)
#define perl(i,r,l) for(ll i=r-1;i>=l;i--)
#define fi first
#define se second
#define pb push_back
#define ins insert
#define pqueue(x) priority_queue<x,vector<x>,greater<x>>
#define all(x) (x).begin(),(x).end()
#define CST(x) cout<<fixed<<setprecision(x)
#define vtpl(x,y,z) vector<tuple<x,y,z>>
#define rev(x) reverse(x);
using ll=long long;
using vl=vector<ll>;
using vvl=vector<vector<ll>>;
using pl=pair<ll,ll>;
using vpl=vector<pl>;
using vvpl=vector<vpl>;
const ll MOD=1000000007;
const ll MOD9=998244353;
const int inf=1e9+10;
const ll INF=4e18;
const ll dy[9]={0,1,0,-1,1,1,-1,-1,0};
const ll dx[9]={1,0,-1,0,1,-1,1,-1,0};
template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
pl add(pl a,pl b){
  ll f=a.first*b.second+a.second*b.first,g=a.second*b.second;
  ll k=gcd(f,g);
  return make_pair(f/k,g/k);
}
int main(){
  ll n;cin >> n;
  vvpl lin(3);
  rep(i,n){
    ll k,a,b;cin >> k >> a >> b;
    ll g=gcd(a,b);
    lin[k].emplace_back(make_pair(a/g,(a+b)/g));
  }
  rep(i,3)lin[i].emplace_back(make_pair(1,1));
  rep(i,3){
    sort(all(lin[i]),[](pl a,pl b){return a.first*b.second<a.second*b.first;});
  }
  set<pl> st;for(auto p:lin[2])st.insert(p);
  ll ans=0;
  for(auto p:lin[0]){
    for(auto q:lin[1]){
      if(p.first*q.second+q.first*p.second<p.second*q.second)continue;
      ll ok=lin[2].size(),ng=-1;
      while(ok-ng>1){
        ll mid=(ok+ng)>>1;
        auto r=lin[2][mid];
        if(max(q.second*r.second*(p.second-p.first),p.second*r.second*(q.second-q.first))<=p.second*q.second*r.first)ok=mid;
        else ng=mid;
      }
      ans+=lin[2].size()-ok;
      auto x=add(p,q);
      x.first=x.second*2-x.first;
      ll g=gcd(x.first,x.second);
      x.first/=g;x.second/=g;
      if(st.count(x))ans--;
      /*for(auto r:lin[2]){
        if(p.second*q.second*r.second*2-p.first*q.second*r.second-q.first*p.second*r.second==r.first*p.second*q.second)ans--;
      }*/
    }
  }
  cout << ans << endl;
}
0