結果

問題 No.461 三角形はいくつ?
ユーザー Hoi_koroHoi_koro
提出日時 2016-12-14 23:18:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,632 bytes
コンパイル時間 1,170 ms
コンパイル使用メモリ 126,268 KB
実行使用メモリ 63,792 KB
最終ジャッジ日時 2024-05-07 14:38:51
合計ジャッジ時間 30,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
63,792 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 3,007 ms
29,612 KB
testcase_06 AC 1,507 ms
17,324 KB
testcase_07 AC 1,897 ms
28,180 KB
testcase_08 AC 1,275 ms
15,788 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 355 ms
7,120 KB
testcase_11 AC 2,209 ms
28,076 KB
testcase_12 AC 950 ms
15,788 KB
testcase_13 AC 3,335 ms
32,056 KB
testcase_14 AC 3,094 ms
30,268 KB
testcase_15 AC 3,310 ms
31,932 KB
testcase_16 AC 588 ms
5,376 KB
testcase_17 AC 631 ms
5,376 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <iomanip>
#include <cstdio>
#include <cassert>
#include <algorithm>
#include <iterator>
#include <string>
#include <vector>
#include <list>
#include <deque>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <tuple>
#include <queue>
#include <stack>
#include <functional>
#include <utility>
#include <complex>
#include <bitset>
#include <numeric>
#include <random>
using namespace std;

#define REP(i,n) for(int (i)=0; (i)<(n) ;++(i))
#define REPN(i,a,n) FOR((i),(a),(a)+(n))
#define FOR(i,a,b) for(int (i)=(a); (i)<(b) ;++(i))
#define PB push_back
#define MP make_pair
#define SE second
#define FI first
#define DBG(a) cerr<<(a)<<endl;
#define dump(a) cerr<<#a <<' '<< a <<endl;
#define ALL(v) (v).begin(),(v).end()
typedef long long LL;  typedef pair<LL, LL> PLL; typedef vector<LL> VLL;
typedef pair<int,int>PI; typedef vector<int> VI;
const LL LINF=334ll<<53; const int INF=15<<26; const LL MOD=1E9+7;

PLL add(PLL a, PLL b){
    LL den=a.SE*b.SE;
    LL num=a.FI*b.SE+a.SE*b.FI;
    LL g=__gcd(den,num);
    return MP(num/g,den/g);
}
bool comp(PLL a, PLL b){
    REP(i,5){
        b.FI-=(b.SE/a.SE)*a.FI;
        b.SE-=(b.SE/a.SE)*a.SE;
        if(b.FI<=0) return false;
        if(b.SE==0) return true;
        a.FI-=(a.SE/b.SE)*b.FI;
        a.SE-=(a.SE/b.SE)*b.SE;
        if(a.FI<=0) return true;
        if(a.SE==0) return false;
    }
    return a.FI*b.SE<a.SE*b.FI;
}
inline bool comp2(pair<PLL,PLL> a, pair<PLL,PLL> b){
    return comp(a.FI,b.FI) ;//or (a.FI==b.FI and comp(a.SE,b.SE));
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector<vector<PLL>> l(3);
    vector<PLL> sum,mi;
    REP(i,n){
        LL a,b,c;
        cin >> a >>b >> c;
        LL g=__gcd(b,c);
        l[a].emplace_back(b/g,(b+c)/g);
    }
    REP(i,3)l[i].emplace_back(1,1);
    REP(i,l[0].size()){
        REP(j,l[1].size()){
            PLL t;
            //cout<<i <<j<<endl;
            if(!comp(t=add(l[0][i],l[1][j]),MP(1,1))){
                sum.emplace_back(t);
                mi.emplace_back(comp(l[0][i],l[1][j])?l[0][i]:l[1][j]);
            }
        }
    }
    sort(ALL(sum),comp);
    sort(ALL(mi),comp);
    sort(ALL(l[2]),comp);
    LL ans=(LL)sum.size()*l[2].size();
    REP(i,l[2].size()){
        LL num=l[2][i].FI,den=l[2][i].SE;
        LL point=upper_bound(ALL(sum),MP(2*den-num,den),comp)-lower_bound(ALL(sum),MP(2*den-num,den),comp);
        LL outside=lower_bound(ALL(mi),MP(den-num,den),comp)-mi.begin();
        ans-=point+outside;
    }
    cout << ans <<endl;




    return 0;
}
0