結果
問題 | No.461 三角形はいくつ? |
ユーザー | char134217728 |
提出日時 | 2019-02-19 22:09:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,149 bytes |
コンパイル時間 | 2,322 ms |
コンパイル使用メモリ | 186,280 KB |
実行使用メモリ | 58,556 KB |
最終ジャッジ日時 | 2024-10-12 22:04:41 |
合計ジャッジ時間 | 9,256 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 229 ms
28,084 KB |
testcase_06 | AC | 128 ms
17,288 KB |
testcase_07 | AC | 155 ms
19,608 KB |
testcase_08 | AC | 106 ms
15,796 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 32 ms
6,872 KB |
testcase_11 | AC | 178 ms
28,204 KB |
testcase_12 | AC | 76 ms
11,572 KB |
testcase_13 | AC | 258 ms
30,904 KB |
testcase_14 | AC | 249 ms
29,244 KB |
testcase_15 | AC | 266 ms
31,160 KB |
testcase_16 | AC | 4 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 521 ms
58,168 KB |
testcase_19 | AC | 529 ms
58,556 KB |
testcase_20 | WA | - |
testcase_21 | AC | 263 ms
31,700 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 4 ms
5,248 KB |
testcase_26 | AC | 4 ms
5,248 KB |
testcase_27 | AC | 4 ms
5,248 KB |
testcase_28 | AC | 3 ms
5,248 KB |
testcase_29 | AC | 103 ms
15,724 KB |
testcase_30 | AC | 50 ms
9,540 KB |
testcase_31 | AC | 205 ms
28,084 KB |
testcase_32 | AC | 268 ms
33,088 KB |
testcase_33 | AC | 3 ms
5,248 KB |
testcase_34 | AC | 3 ms
5,248 KB |
testcase_35 | AC | 4 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 | - |
コンパイルメッセージ
main.cpp:58:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 58 | main(){ | ^~~~
ソースコード
#include <bits/stdc++.h> #include "unistd.h" using namespace std; #define WA cout<<"char134217728";exit(0) #define RE throw #define TLE sleep(1000) #define FOR(i,a,b) for(int i=(a),i##formax=(b);i<i##formax;i++) #define FORR(i,a,b) for(int i=(a),i##formax=(b);i>=i##formax;i--) #define pb push_back #define mp make_pair #define fi first #define se second #define pcnt __builtin_popcount #define sz(x) (int)(x).size() #define maxs(x,y) x=max(x,y) #define mins(x,y) x=min(x,y) #define show(x) cout<<#x<<" = "<<x<<endl; #define all(a) (a.begin()),(a.end()) #define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++) #define perm(c) sort(all(c));for(bool c##p=1;c##p;c##p=next_permutation(all(c))) #define uniq(v) sort(all(v));v.erase(unique(all(v)), v.end()); #define bit(n) (1LL<<(n)) #define randInt(l,r) (uniform_int_distribution<ll>(l,r)(rnd)) #define randDouble(l,r) (uniform_real_distribution<double>(l,r)(rnd)) #define dout(d) printf("%.12f\n",d) typedef long long ll; typedef __int128_t lll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; template<class T>using V=vector<T>; template<class T>using VV=V<V<T>>; template<class T,class Y>ostream& operator<<(ostream& o,const pair<T,Y>& p){return o<<"("<<p.fi<<", "<<p.se<<")";} template<typename A,size_t N,typename T>void Fill(A (&array)[N],const T&v){fill((T*)array,(T*)(array+N),v);} lll gcd(lll a,lll b,lll &x,lll &y){if(!b){x=1;y=0;return a;}lll d=gcd(b,a%b,y,x);y-=a/b*x;return d;} ll gcd(ll a,ll b){lll x=0,y=0;return gcd(a,b,x,y);} ll modPow(lll a,lll n,ll m){if(!a)return a;lll p=1;for(;n>0;n>>=1,a=a*a%m)if(n&1)p=p*a%m;return(ll)p;} bool isPrime(ll n){if(n<2||n%2==0)return n==2;lll t=n-1,d=t/(t&-t);for(lll a:{2,325,9375,28178,450775,9780504,1795265022})if(a%n){for(t=d,a=modPow(a,t,n);t!=n-1&&a!=1&&a!=n-1;a=a*a%n,t=t*2%n);if(a!=n-1&&t%2==0)return 0;}return 1;} const int IINF = 1e9+6; const ll LINF = 1e18; const int MOD = 1e9+7; const double PI = acos(-1); const double EPS = 1e-10; static random_device rd; static mt19937 rnd(rd()); const int N = 1e5; int n; const pll P1 = pll(1, 1); const pll P2 = pll(2, 1); V<pll> v[3], c, s; function<bool (const pll&a, const pll&b)> _less = [](const pll&a, const pll&b){ return a.fi*b.se < b.fi*a.se; }; pll _plus(const pll&a, const pll&b){ return pll(a.fi*b.se+b.fi*a.se, a.se*b.se); }; main(){ cin.tie(0); ios::sync_with_stdio(false); cin >> n; FOR(i, 0, n){ int p, a, b; cin >> p >> a >> b; v[p].pb(pll(a, a+b)); } sort(v, v+3, [](const V<pll>&a, const V<pll>&b){return sz(a)<sz(b);}); FOR(i, 0, 3){ sort(all(v[i]), _less); v[i].pb(pll(1,1)); } reverse(all(v[1])); for(pll p0:v[0]) for(pll p1:v[1]){ pll p = _plus(p0, p1); if(p.fi < p.se) break; p.fi = p.se*2-p.fi; c.pb(p); p = _less(p0, p1) ? p0 : p1; p.fi = p.se-p.fi; s.pb(p); } sort(all(c), _less); sort(all(s), _less); ll ans = 0; for(pll p:v[2]){ ans += distance( s.begin(), upper_bound(all(s), p, _less) ); ans -= distance( lower_bound(all(c), p, _less), upper_bound(all(c), p, _less) ); } cout << ans << endl; }