洛谷P1969积木大赛
Posted Absolutezero
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了洛谷P1969积木大赛相关的知识,希望对你有一定的参考价值。
递增区间内累计增量
1 #include<cstdio> 2 #include<cstring> 3 using namespace std; 4 int a,h,n,ans; 5 int main(){ 6 a=ans=0; 7 scanf("%d",&n); 8 for (int i=1;i<=n;i++){ 9 scanf("%d",&h); 10 if (h>a) 11 ans+=h-a; 12 a=h; 13 } 14 printf("%d",ans); 15 return 0; 16 }
以上是关于洛谷P1969积木大赛的主要内容,如果未能解决你的问题,请参考以下文章