結果
問題 | No.595 登山 |
ユーザー | ryoissy |
提出日時 | 2017-11-10 23:04:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,448 bytes |
コンパイル時間 | 1,370 ms |
コンパイル使用メモリ | 164,680 KB |
実行使用メモリ | 22,212 KB |
最終ジャッジ日時 | 2024-05-03 13:21:30 |
合計ジャッジ時間 | 8,544 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
11,776 KB |
testcase_01 | AC | 4 ms
11,776 KB |
testcase_02 | AC | 3 ms
12,032 KB |
testcase_03 | AC | 4 ms
11,904 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 5 ms
11,904 KB |
testcase_25 | AC | 5 ms
12,032 KB |
testcase_26 | AC | 318 ms
18,944 KB |
testcase_27 | AC | 297 ms
19,072 KB |
testcase_28 | AC | 297 ms
19,072 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:64:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 64 | scanf("%d%lld",&n,&p); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:66:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 66 | scanf("%d",&h[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define INF 100000000000000007LL using namespace std; typedef long long ll; typedef pair<int,int> P; class segtree{ public: static const int N=1<<18; ll dp[1<<19]; ll lazy[1<<19]; segtree(){ memset(dp,0,sizeof(dp)); } void lazy_eval(int k){ dp[k]+=lazy[k]; if(k<N-1){ lazy[k*2+1]+=lazy[k]; lazy[k*2+2]+=lazy[k]; } lazy[k]=0; } void lazy_upd(int k){ dp[k]=min(dp[k*2+1],dp[k*2+2]); } void update(int a,int b,ll v,int k=0,int l=0,int r=N){ lazy_eval(k); if(b<=l || r<=a)return; if(a<=l && r<=b){ lazy[k]+=v; lazy_eval(k); return; } int mid=(l+r)/2; update(a,b,v,k*2+1,l,mid); update(a,b,v,k*2+2,mid,r); lazy_upd(k); } ll query(int a,int b,int k=0,int l=0,int r=N){ lazy_eval(k); if(b<=l || r<=a)return INF; if(a<=l && r<=b)return dp[k]; int mid=(l+r)/2; ll vl=query(a,b,k*2+1,l,mid); ll vr=query(a,b,k*2+2,mid,r); lazy_upd(k); return min(vl,vr); } }; segtree seg[2]; int n; ll p; int s; int h[200005]; ll cost[200005]; ll cost2[200005]; int main(void){ scanf("%d%lld",&n,&p); for(int i=0;i<n;i++){ scanf("%d",&h[i]); } for(int i=1;i<n;i++){ int val=h[i]-h[i-1]; if(val>0){ seg[0].update(0,i,val); }else{ seg[1].update(0,i,-val); } ll bv=seg[0].query(0,i); bv=min(seg[1].query(0,i)+p,bv); seg[0].update(i,i+1,bv); seg[1].update(i,i+1,bv); } printf("%lld\n",min(seg[0].query(n-1,n),seg[1].query(n-1,n))); return 0; }