結果
問題 | No.595 登山 |
ユーザー |
![]() |
提出日時 | 2017-11-11 00:14:49 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 546 ms / 1,500 ms |
コード長 | 2,701 bytes |
コンパイル時間 | 1,571 ms |
コンパイル使用メモリ | 173,264 KB |
実行使用メモリ | 22,804 KB |
最終ジャッジ日時 | 2024-11-24 16:05:55 |
合計ジャッジ時間 | 11,187 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 |
ソースコード
#include<bits/stdc++.h>using namespace std;using Int = long long;template <typename T,typename E>struct SegmentTree{typedef function<T(T,T)> F;typedef function<T(T,E)> G;typedef function<E(E,E)> H;typedef function<E(E,Int)> P;Int n;F f;G g;H h;P p;T d1;E d0;vector<T> dat;vector<E> laz;SegmentTree(Int n_,F f,G g,H h,T d1,E d0,vector<T> v=vector<T>(),P p=[](E a,Int b){return a;}):f(f),g(g),h(h),d1(d1),d0(d0),p(p){init(n_);if(n_==(Int)v.size()) build(n_,v);}void init(Int n_){n=1;while(n<n_) n*=2;dat.clear();dat.resize(2*n-1,d1);laz.clear();laz.resize(2*n-1,d0);}void build(Int n_, vector<T> v){for(Int i=0;i<n_;i++) dat[i+n-1]=v[i];for(Int i=n-2;i>=0;i--)dat[i]=f(dat[i*2+1],dat[i*2+2]);}inline void eval(Int len,Int k){if(laz[k]==d0) return;if(k*2+1<n*2-1){laz[k*2+1]=h(laz[k*2+1],laz[k]);laz[k*2+2]=h(laz[k*2+2],laz[k]);}dat[k]=g(dat[k],p(laz[k],len));laz[k]=d0;}T update(Int a,Int b,E x,Int k,Int l,Int r){eval(r-l,k);if(r<=a||b<=l) return dat[k];if(a<=l&&r<=b){laz[k]=h(laz[k],x);return g(dat[k],p(laz[k],r-l));}return dat[k]=f(update(a,b,x,k*2+1,l,(l+r)/2),update(a,b,x,k*2+2,(l+r)/2,r));}T update(Int a,Int b,E x){return update(a,b,x,0,0,n);}T query(Int a,Int b,Int k,Int l,Int r){eval(r-l,k);if(r<=a||b<=l) return d1;if(a<=l&&r<=b) return dat[k];T vl=query(a,b,k*2+1,l,(l+r)/2);T vr=query(a,b,k*2+2,(l+r)/2,r);return f(vl,vr);}T query(Int a,Int b){return query(a,b,0,0,n);}};const Int INF=1LL<<55LL;signed main(){Int n,p;cin>>n>>p;vector<Int> h(n+1,INF);for(Int i=0;i<n;i++) cin>>h[i];SegmentTree<Int,Int> ushi(n+1,[](Int a,Int b){return min(a,b);},[](Int a,Int b){return a+b;},[](Int a,Int b){return a+b;},INF,Int(0),vector<Int>(n+1,0));SegmentTree<Int,Int> beet=ushi;vector<Int> dp(n,INF);dp[0]=0;ushi.update(1,2,p);for(Int i=1;i<n;i++){ushi.update(0,i,max(Int(0),h[i]-h[i-1]));beet.update(0,i,max(Int(0),h[i-1]-h[i]));dp[i]=min(dp[i],ushi.query(0,i));dp[i]=min(dp[i],beet.query(0,i)+p);ushi.update(i+1,i+2,dp[i]+p);beet.update(i+1,i+2,dp[i]);/*/cout<<i<<":"<<dp[i]<<endl;cout<<"ushi::"<<endl;for(int j=0;j<n;j++){cout<<j<<":"<<ushi.query(j,j+1)<<endl;}cout<<"beet::"<<endl;for(int j=0;j<n;j++){cout<<j<<":"<<beet.query(j,j+1)<<endl;}//*/}cout<<dp.back()<<endl;return 0;}