結果
問題 | No.461 三角形はいくつ? |
ユーザー | ytft |
提出日時 | 2021-04-05 00:36:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,551 bytes |
コンパイル時間 | 7,326 ms |
コンパイル使用メモリ | 413,744 KB |
実行使用メモリ | 11,164 KB |
最終ジャッジ日時 | 2024-06-09 07:40:16 |
合計ジャッジ時間 | 14,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 14 ms
6,944 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 3,165 ms
6,940 KB |
testcase_07 | AC | 3,671 ms
6,940 KB |
testcase_08 | AC | 2,457 ms
6,944 KB |
testcase_09 | AC | 8 ms
6,940 KB |
testcase_10 | AC | 713 ms
6,944 KB |
testcase_11 | AC | 4,234 ms
6,944 KB |
testcase_12 | AC | 1,812 ms
6,944 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_dec_float.hpp> #include <boost/multiprecision/cpp_int.hpp> namespace mp = boost::multiprecision; using Real=mp::number<mp::cpp_dec_float<250>>; using namespace std; int main(){ int N; cin>>N; vector<vector<Real>> lines(3,vector<Real>(1,0)); int p; long long ans=0; Real 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(),[](Real a,Real b){return a<b;}); } int m,M,mid; sort(lines.begin(),lines.end(),[](vector<Real>& a,vector<Real>& 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; }