贪心
使用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