HYSBZ_1588_set

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HYSBZ_1588_set相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

HYSBZ - 1588 splay

营业额统计 HYSBZ - 1588

BZOJ1588_营业额统计_KEY

六月计划#2A(6.10-6.16)

HYSBZ_2002_分块

HYSBZ_1854_并查集