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

bzoj1345

时间:2017-08-09 22:12:38      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:div   pre   c++   close   return   span   opened   log   题解   

贪心

这并没有想清楚就看题解了。。。

看上去肯定是贪心,那么怎么贪呢?事实上,我们想一下,假设max(a[i],a[i+1])中a[i]没有合并,那么后面取max肯定是a[i+1],因为如果后面合并之后比a[i+1]大,那么不如先和a[i]合并了,如果后面合并了比a[i+1]小,那么也没用,因为不可能选到比a[i+1]小的

技术分享
#include<bits/stdc++.h>
using namespace std;
int a[1000010];
int main()
{
    int n;
    long long ans = 0;
    scanf("%d", &n);
    for(int i = 1; i <= n; ++i) scanf("%d", &a[i]);
    for(int i = 2; i <= n; ++i) ans += max(a[i], a[i - 1]);
    printf("%lld\n", ans);
    return 0;
}
View Code

 

bzoj1345

标签:div   pre   c++   close   return   span   opened   log   题解   

原文地址:http://www.cnblogs.com/19992147orz/p/7327854.html

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