码迷,mamicode.com
首页 > 其他好文 > 详细

NO1P2018 T1铺设道路 | | (NO1P2013 积木大赛)

时间:2018-11-10 19:04:34      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:for   pac   int   iostream   printf   noi   algorithm   str   turn   

#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int n,last=0,ans=0;
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        int x;scanf("%d",&x);
        if(x>last) ans+=(x-last);
        last=x;
    }
    printf("%d",ans);
    return 0;
} 

考完NOIPday1,整个人都不好了。。。。。<_>
把序列分成(a1,..ai)(ai+1,...aj)......(ak,...an)多个非递减序列。
然后所有段中最大值的和减去除第一段外的段的最小值,化简一下,就出来了

NO1P2018 T1铺设道路 | | (NO1P2013 积木大赛)

标签:for   pac   int   iostream   printf   noi   algorithm   str   turn   

原文地址:https://www.cnblogs.com/ddddeacde/p/9940056.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!