結果
問題 | No.1435 Mmm...... |
ユーザー | snow39 |
提出日時 | 2021-03-19 22:53:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,557 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 133,788 KB |
実行使用メモリ | 111,044 KB |
最終ジャッジ日時 | 2024-11-19 00:20:45 |
合計ジャッジ時間 | 16,103 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
111,044 KB |
testcase_02 | AC | 2 ms
13,636 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 289 ms
13,064 KB |
testcase_07 | AC | 345 ms
13,432 KB |
testcase_08 | AC | 396 ms
13,768 KB |
testcase_09 | AC | 373 ms
13,516 KB |
testcase_10 | AC | 326 ms
13,248 KB |
testcase_11 | AC | 319 ms
13,236 KB |
testcase_12 | AC | 295 ms
13,088 KB |
testcase_13 | AC | 284 ms
13,144 KB |
testcase_14 | AC | 205 ms
8,568 KB |
testcase_15 | AC | 413 ms
13,856 KB |
testcase_16 | AC | 339 ms
13,400 KB |
testcase_17 | AC | 235 ms
8,872 KB |
testcase_18 | AC | 427 ms
13,816 KB |
testcase_19 | AC | 310 ms
13,216 KB |
testcase_20 | AC | 385 ms
13,652 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 424 ms
13,780 KB |
testcase_24 | AC | 425 ms
13,684 KB |
testcase_25 | AC | 426 ms
13,792 KB |
testcase_26 | AC | 422 ms
13,680 KB |
testcase_27 | AC | 426 ms
91,068 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) #define all(v) v.begin(),v.end() using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} #include <functional> #include <climits> //SegmentTree<int> seg(N,[](int a,int b){return min(a,b);},INT_MAX); template< typename T> class SegmentTree{ private: void resize(int size){ n=1; while(n<size) n*=2; tree.resize(2*n-1,def); } public: using F = function<T(T,T)>; int n; vector<T> tree; F operation; T def; SegmentTree(){} SegmentTree(int size,F _operation,T _def):operation(_operation),def(_def){ resize(size); } void embody(int size,F _operation,T _def){ operation=_operation; def=_def; resize(size); } void initialize(const vector<T> &v){ int size=v.size(); resize(size); for(int i=0;i<size;i++) tree[i+n-1]=v[i]; for(int i=n-2;i>=0;i--) tree[i]=operation(tree[2*i+1],tree[2*i+2]); } void update(int index,T value){ index+=n-1; tree[index]=value; while(index>0){ index=(index-1)/2; tree[index]=operation(tree[2*index+1],tree[2*index+2]); } } T query(int a,int b,int k=0,int l=0,int r=-1){//[a,b) if(r<0) r=n; if(r<=a||b<=l) return def; else if(a<=l&&r<=b) return tree[k]; else{ T lval=query(a,b,2*k+1,l,(l+r)/2); T rval=query(a,b,2*k+2,(l+r)/2,r); return operation(lval,rval); } } T get(int index){ return tree[index+n-1]; } int find(int x,int k=0,int l=0,int r=-1){// a[0]+...+a[i]>=x (i:minimal) if(r<0) r=n; if(tree[k]<x) return -1; if(r-l==1) return k-(n-1); if(tree[2*k+1]>=x) return find(x,2*k+1,l,(l+r)/2); else return find(x-tree[2*k+1],2*k+2,(l+r)/2,r); } //right -> change vl to vr (notice doesn't contain b. range [a,b)) int find_left(int a,int b,T x,int k=0,int l=0,int r=-1){// max(a[a],...,a[i])>=x (i:minimal) if(r<0) r=n; if(tree[k]<x||r<=a||b<=l) return -1; if(r-l==1) return k-(n-1); int vl=find_left(a,b,x,2*k+1,l,(l+r)/2); if(vl>=0) return vl; return find_left(a,b,x,2*k+2,(l+r)/2,r); } }; const int INF=1e9; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin>>N; vector<int> A(N); rep(i,N) cin>>A[i]; typedef pair<int,int> Pli; SegmentTree<Pli> maseg(N,[](Pli a,Pli b){ if(a.first<=b.first) return b; return a; },mkp(-INF,N)); { vector<Pli> init(N); rep(i,N) init[i]=mkp(A[i],i); maseg.initialize(init); } typedef pair<int,int> Pll; SegmentTree<Pll> miseg(N,[](Pll a,Pll b){ vector<int> p={a.first,a.second,b.first,b.second}; sort(all(p)); return mkp(p[0],p[1]); },mkp(INF,INF)); { vector<Pll> init(N); rep(i,N) init[i]=mkp(A[i],INF); miseg.initialize(init); } ll ans=0; auto solve = [&](auto &&solve,int l,int r)->void{//[l,r) if(r-l<=1) return; auto [ma,mat] = maseg.query(l,r); solve(solve,l,mat); solve(solve,mat+1,r); if(mat-l<r-mat){ int mi1=ma; int mi2=ma; int last=r; for(int i=mat;i>=l;i--){ if(mi1>A[i]){ mi2=mi1; mi1=A[i]; }else if(mi2>A[i]){ mi2=A[i]; } if(mi1+mi2<ma) break; int ok=mat,ng=last; while(abs(ok-ng)>1){ int mid=(ok+ng)/2; auto [va,vb]=miseg.query(mat,mid+1); vector<int> p={mi1,mi2,va,vb}; sort(all(p)); if(p[0]+p[1]>=ma) ok=mid; else ng=mid; } if(i==mat) ans--; ans+=ok-mat+1; last=ok+1; } }else{ int mi1=ma; int mi2=ma; int last=l-1; for(int i=mat;i<r;i++){ if(mi1>A[i]){ mi2=mi1; mi1=A[i]; }else if(mi2>A[i]){ mi2=A[i]; } if(mi1+mi2<ma) break; int ok=mat,ng=last; while(abs(ok-ng)>1){ int mid=(ok+ng)/2; auto [va,vb]=miseg.query(mid,mat+1); vector<int> p={mi1,mi2,va,vb}; sort(all(p)); if(p[0]+p[1]>=ma) ok=mid; else ng=mid; } if(i==mat) ans--; ans+=mat-ok+1; last=ok-1; } } }; solve(solve,0,N); cout<<ans<<endl; return 0; }