noip2013——提高组——积木大赛
Posted Yzyet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了noip2013——提高组——积木大赛相关的知识,希望对你有一定的参考价值。
noip2013 D2T1
太简单了,不说了。
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int read(){ int t=1,num=0; char c=getchar(); while(c>\'9\'||c<\'0\'){if(c==\'-\')t=-1;c=getchar();} while(c>=\'0\'&&c<=\'9\'){num=num*10+c-\'0\';c=getchar();} return num*t; } int a,n,ans=0,last=0; int main() { n=read(); for(int i=1;i<=n;i++){ a=read(); if(a>last)ans+=a-last; last=a; } printf("%d",ans); return 0; }
本文由Yzyet编写,网址为www.cnblogs.com/Yzyet。非Yzyet同意,禁止转载,侵权者必究。
以上是关于noip2013——提高组——积木大赛的主要内容,如果未能解决你的问题,请参考以下文章
洛谷P1969 [NOIP2013提高组Day2T1] 积木大赛