ACM 贪心 STL multiset 二分查找 hdu4268

本文介绍了如何在ACM竞赛中,利用STL中的multiset结合二分查找算法解决HDU 4268题目。通过upper_bound和lower_bound函数在multiset中寻找特定值,实现贪心策略,达到O(N*log N)的时间复杂度。注意避免使用cin进行输入,以防止超时。
摘要由CSDN通过智能技术生成

贪心

使用multiset的二分查找函数upper_bound,lower_bound,找到比h小的中最大的值,O(log N)

总时间复杂度 O(N*log N), set使用红黑树构造

另外读入不要用cin,否则会超时


函数lower_bound(): 在first和last中的前闭后开区间进行二分查找,返回大于或等于val的第一个元素位置。如果所有元素都小于val,则返回last的位置
[begin,end)

upper_bound: 返回>对象的第一个位置



/*
 * Author: NICK WONG
 * Created Time:  2015/7/26 20:25:56
 * File Name: 
 */
#include<iostream>
#include<sstream>
#include<fstream>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cctype>
#include<cmath>
#include<ctime>
#include<iomanip>
using namespace std;
#define out(x) cout<<#x<<": "<<x<<endl
const double eps(1e-8);
const int maxn=101000;
const long long maxint=-1u>>1;
const long long maxlong=maxint*maxint;
typedef long long lint;
struct node
{
    int x,y;     
};
int n,t;
node a[maxn],b[maxn];
multiset<int> s;

void init()
{
    cin>>n;
    //for (int i=1; i<=n; i++)
        //a[i].x=a[i].y=b[i].x=b[i].y=1;
    //return;
    for (int i=1; i<=n; i++)
        scanf("%d%d",&a[i].x,&a[i].y);
        //cin>>a[i].x>>a[i].y;   
    for (int i=1; i<=n; i++)
        //cin>>b[i].x>>b[i].y;
        scanf("%d%d",&b[i].x,&b[i].y);
}

bool cmp(node a, node b)
{
    return a.x<b.x;//|| (a.x==b.x && a.y<b.y);
}

void work()
{
    int 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值