結果

問題 No.461 三角形はいくつ?
ユーザー ytftytft
提出日時 2021-04-05 00:23:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,421 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 178,964 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-09 07:26:29
合計ジャッジ時間 7,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 153 ms
5,376 KB
testcase_06 AC 79 ms
5,376 KB
testcase_07 AC 96 ms
5,376 KB
testcase_08 AC 66 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 20 ms
5,376 KB
testcase_11 AC 112 ms
5,376 KB
testcase_12 AC 50 ms
5,376 KB
testcase_13 AC 175 ms
5,376 KB
testcase_14 AC 164 ms
5,376 KB
testcase_15 AC 180 ms
5,376 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 328 ms
5,376 KB
testcase_19 AC 328 ms
5,376 KB
testcase_20 AC 169 ms
5,376 KB
testcase_21 AC 179 ms
5,376 KB
testcase_22 AC 176 ms
5,376 KB
testcase_23 AC 35 ms
5,376 KB
testcase_24 AC 33 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 7 ms
5,376 KB
testcase_29 AC 74 ms
5,376 KB
testcase_30 AC 38 ms
5,376 KB
testcase_31 AC 135 ms
5,376 KB
testcase_32 AC 179 ms
5,376 KB
testcase_33 AC 6 ms
5,376 KB
testcase_34 AC 7 ms
5,376 KB
testcase_35 AC 7 ms
5,376 KB
testcase_36 AC 60 ms
5,376 KB
testcase_37 AC 57 ms
5,376 KB
testcase_38 AC 60 ms
5,376 KB
testcase_39 AC 54 ms
5,376 KB
testcase_40 AC 57 ms
5,376 KB
testcase_41 AC 62 ms
5,376 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N;
    cin>>N;
    vector<vector<long double>> lines(3,vector<long double>(1,0));
    int p;
    long long ans=0;
    long double a,b;
    for(int i=0;i<N;i++){
        cin>>p>>a>>b;
        lines[p].push_back(b/(b+a));
    }
    for(int i=0;i<3;i++){
        sort(lines[i].begin(),lines[i].end(),[](long double a,long double b){return a<b;});
    }
    int m,M,mid;
    sort(lines.begin(),lines.end(),[](vector<long double>& a,vector<long double>& b){return a.size()<b.size();});
    for(int i=0;i<lines[0].size();i++){
        for(int j=0;j<lines[1].size();j++){
            if(lines[0][i]+lines[1][j]>1){
                continue;
            }
            m=0;
            M=lines[2].size();
            while(M-m>1){
                mid=(m+M)/2;
                if(lines[2][mid]+lines[0][i]+lines[1][j]>1){
                    M=mid;
                }else{
                    m=mid;
                }
            }

            if(lines[2][m]+lines[0][i]+lines[1][j]==1){
                ans-=1;
            }
            m=-1;
            M=lines[2].size();
            while(M-m>1){
                mid=(m+M)/2;
                if(lines[2][mid]+max(lines[0][i],lines[1][j])>1){
                    M=mid;
                }else{
                    m=mid;
                }
            }
            ans+=m+1;
        }
    }
    cout<<ans<<endl;
}
0