結果
問題 | No.595 登山 |
ユーザー | HIR180 |
提出日時 | 2017-11-10 22:58:55 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 29 ms / 1,500 ms |
コード長 | 1,033 bytes |
コンパイル時間 | 1,134 ms |
コンパイル使用メモリ | 159,184 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-11-24 13:16:47 |
合計ジャッジ時間 | 2,570 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d%d",&n,&p); | ~~~~~^~~~~~~~~~~~~~ main.cpp:24:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | for(int i=1;i<=n;i++) scanf("%d",&h[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; typedef pair<int,P> P1; typedef pair<P,P> P2; #define pb push_back #define mp make_pair #define eps 1e-7 #define INF 1000000000 #define mod 1000000007 #define fi first #define sc second #define rep(i,x) for(int i=0;i<x;i++) #define repn(i,x) for(int i=1;i<=x;i++) #define SORT(x) sort(x.begin(),x.end()) #define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end()) #define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin()) #define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin()) int n,p,h[200005]; ll dp[200005][2]; int main(){ scanf("%d%d",&n,&p); for(int i=1;i<=n;i++) scanf("%d",&h[i]); rep(i,200005) rep(j,2) dp[i][j] = 1e18; dp[1][0] = 0; for(int i=2;i<=n;i++){ dp[i][0] = min(dp[i-1][0]+min(1LL*p,max(0LL,1LL*h[i]-h[i-1])),dp[i-1][1]+max(0LL,1LL*h[i]-h[i-1])+1LL*p); dp[i][1] = min(dp[i-1][1]+min(1LL*p,max(0LL,1LL*h[i-1]-h[i])),dp[i-1][0]+max(0LL,1LL*h[i-1]-h[i])+1LL*p); } cout<<min(dp[n][0],dp[n][1])<<endl; }