結果
問題 | No.461 三角形はいくつ? |
ユーザー | kzyKT |
提出日時 | 2016-12-12 02:03:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,752 bytes |
コンパイル時間 | 1,931 ms |
コンパイル使用メモリ | 164,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-29 12:26:19 |
合計ジャッジ時間 | 11,381 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 282 ms
5,248 KB |
testcase_06 | AC | 162 ms
5,248 KB |
testcase_07 | AC | 187 ms
5,248 KB |
testcase_08 | AC | 125 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 38 ms
5,248 KB |
testcase_11 | AC | 218 ms
5,248 KB |
testcase_12 | AC | 96 ms
5,248 KB |
testcase_13 | AC | 325 ms
5,248 KB |
testcase_14 | AC | 320 ms
5,248 KB |
testcase_15 | AC | 325 ms
5,248 KB |
testcase_16 | AC | 91 ms
5,248 KB |
testcase_17 | AC | 92 ms
5,248 KB |
testcase_18 | AC | 250 ms
5,248 KB |
testcase_19 | AC | 249 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | AC | 326 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 179 ms
5,248 KB |
testcase_26 | AC | 174 ms
5,248 KB |
testcase_27 | AC | 180 ms
5,248 KB |
testcase_28 | AC | 182 ms
5,248 KB |
testcase_29 | AC | 237 ms
5,248 KB |
testcase_30 | AC | 220 ms
5,248 KB |
testcase_31 | AC | 240 ms
5,248 KB |
testcase_32 | AC | 244 ms
5,248 KB |
testcase_33 | AC | 328 ms
5,248 KB |
testcase_34 | AC | 328 ms
5,248 KB |
testcase_35 | AC | 410 ms
5,248 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 | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define F first #define S second #define pi M_PI #define R cin>> #define Z class #define ll long long #define ln cout<<'\n' #define in(a) insert(a) #define pb(a) push_back(a) #define pd(a) printf("%.10f\n",a) #define mem(a) memset(a,0,sizeof(a)) #define all(c) (c).begin(),(c).end() #define iter(c) __typeof((c).begin()) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;i--) #define REP(i,m,n) for(int i=(int)(m);i<(int)(n);i++) #define rep(i,n) REP(i,0,n) #define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++) template<Z A>void pr(A a){cout<<a;ln;} template<Z A,Z B>void pr(A a,B b){cout<<a<<' ';pr(b);} template<Z A,Z B,Z C>void pr(A a,B b,C c){cout<<a<<' ';pr(b,c);} template<Z A,Z B,Z C,Z D>void pr(A a,B b,C c,D d){cout<<a<<' ';pr(b,c,d);} template<Z A>void PR(A a,ll n){rep(i,n){if(i)cout<<' ';cout<<a[i];}ln;} ll check(ll n,ll m,ll x,ll y){return x>=0&&x<n&&y>=0&&y<m;} const ll MAX=1000000007,MAXL=1LL<<61,dx[4]={-1,0,1,0},dy[4]={0,1,0,-1}; typedef pair<int,int> P; const double EPS = 1e-10; void Main() { int n; cin >> n; vector<double> v[3]; rep(i,3) v[i].pb(0); ll ans=1; rep(j,n) { int z; double x,y; cin >> z >> x >> y; x/=x+y; y=1.0-x; rep(i,v[(z+1)%3].size()) { if(v[(z+1)%3][i]>x) break; int k1=lower_bound(all(v[(z+2)%3]),x-v[(z+1)%3][i])-v[(z+2)%3].begin(); int k2=upper_bound(all(v[(z+2)%3]),x)-v[(z+2)%3].begin(); int k3=upper_bound(all(v[(z+2)%3]),1.0-v[(z+1)%3][i])-v[(z+2)%3].begin(); int k4=upper_bound(all(v[(z+2)%3]),x-v[(z+1)%3][i])-v[(z+2)%3].begin(); ans+=k1+min(k2,k3)-k4; } v[z].pb(y); sort(all(v[z])); } pr(ans); } int main(){ios::sync_with_stdio(0);cin.tie(0);Main();return 0;}