結果

問題 No.461 三角形はいくつ?
ユーザー chocoruskchocorusk
提出日時 2019-12-07 16:34:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 117,320 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-07 16:19:12
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 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 100 ms
6,940 KB
testcase_06 AC 57 ms
6,944 KB
testcase_07 AC 69 ms
6,944 KB
testcase_08 AC 46 ms
6,940 KB
testcase_09 AC 2 ms
6,948 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 76 ms
6,940 KB
testcase_12 AC 35 ms
6,944 KB
testcase_13 AC 110 ms
6,940 KB
testcase_14 AC 104 ms
6,944 KB
testcase_15 AC 111 ms
6,940 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 14 ms
6,940 KB
testcase_18 AC 109 ms
6,940 KB
testcase_19 AC 112 ms
6,940 KB
testcase_20 AC 112 ms
6,940 KB
testcase_21 AC 107 ms
6,940 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 111 ms
6,944 KB
testcase_26 AC 110 ms
6,944 KB
testcase_27 AC 6 ms
6,944 KB
testcase_28 AC 7 ms
6,940 KB
testcase_29 AC 179 ms
6,944 KB
testcase_30 AC 180 ms
6,940 KB
testcase_31 AC 174 ms
6,940 KB
testcase_32 AC 170 ms
6,940 KB
testcase_33 AC 7 ms
6,944 KB
testcase_34 AC 7 ms
6,940 KB
testcase_35 AC 7 ms
6,940 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
#define double long double
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;

int main()
{
    int n;
    cin>>n;
    vector<double> v[3];
    for(int i=0; i<n; i++){
        int p; double a, b;
        cin>>p>>a>>b;
        v[p].push_back(a/(a+b));
    }
    for(int i=0; i<3; i++){
        v[i].push_back(1);
        sort(v[i].begin(), v[i].end());
    }
    ll ans=0;
    for(int i=0; i<v[0].size(); i++){
        for(int j=0; j<v[1].size(); j++){
            double x=v[0][i], y=v[1][j];
            if(x+y<1) continue;
            double z=max(1-x, 1-y);
            int k=lower_bound(v[2].begin(), v[2].end(), z)-v[2].begin();
            ans+=(int)v[2].size()-k;
            k=lower_bound(v[2].begin(), v[2].end(), 2-x-y)-v[2].begin();
            if(k<v[2].size() && x+y+v[2][k]==2 && x+v[2][k]>=1 && y+v[2][k]>=1) ans--;
        }
    }
    cout<<ans<<endl;
    return 0;
}
0