結果
問題 | No.461 三角形はいくつ? |
ユーザー | fumofumofuni |
提出日時 | 2022-08-29 23:49:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,161 bytes |
コンパイル時間 | 2,750 ms |
コンパイル使用メモリ | 211,092 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-11-06 20:24:55 |
合計ジャッジ時間 | 22,403 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 1,945 ms
5,248 KB |
testcase_06 | AC | 834 ms
5,248 KB |
testcase_07 | AC | 1,046 ms
5,248 KB |
testcase_08 | AC | 588 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 105 ms
5,248 KB |
testcase_11 | AC | 1,293 ms
5,248 KB |
testcase_12 | AC | 397 ms
5,248 KB |
testcase_13 | AC | 2,286 ms
5,248 KB |
testcase_14 | AC | 2,141 ms
5,248 KB |
testcase_15 | AC | 2,290 ms
5,248 KB |
testcase_16 | AC | 7 ms
5,248 KB |
testcase_17 | AC | 7 ms
5,248 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 | -- | - |
ソースコード
#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; lin[k].emplace_back(make_pair(a,a+b)); } 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;}); } rev(all(lin[2])); 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; for(auto r:lin[2]){ //cout << p.first <<" " << p.second <<" " << q.first <<" " <<q.second <<" " << r.first <<" " << r.second << endl; if(max(q.second*r.second*(p.second-p.first),p.second*r.second*(q.second-q.first))<=p.second*q.second*r.first){ ans++; } else break; 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; } } } cout << ans << endl; }