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

HYSBZ_1588_set

时间:2016-10-06 22:00:56      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

http://www.lydsy.com/JudgeOnline/problem.php?id=1588

 

直接set做就好了,注意set的迭代器只能--之类的操作。

OJ崩了,也不知道对错。

 

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<set>
using namespace std;

set<int> s;
set<int>::iterator it;

int main()
{
    int temp,n;
    scanf("%d",&n);
    scanf("%d",&temp);
    int sum = temp;
    s.insert(temp);
    for(int i = 2;i <= n;i++)
    {
        scanf("%d",&temp);
        it = s.lower_bound(temp);
        if(it == s.begin()) sum += *it-temp;
        else if(it == s.end())  sum += temp-*(--it);
        else
        {
            int a = *it-temp,b = temp-*(--it);
            sum += min(a,b);
        }
        s.insert(temp);
    }
    printf("%d\n",sum);
    return 0;
}

 

HYSBZ_1588_set

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5934639.html

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