HDUoj 4268 Alice and Bob ( STL二分贪心

题目描述

Alice and Bob’s game never ends. Today, they introduce a new game. In this game, both of them have N different rectangular cards respectively. Alice wants to use his cards to cover Bob’s. The card A can cover the card B if the height of A is not smaller than B and the width of A is not smaller than B. As the best programmer, you are asked to compute the maximal number of Bob’s cards that Alice can cover.
Please pay attention that each card can be used only once and the cards cannot be rotated.

输入

The first line of the input is a number T (T <= 40) which means the number of test cases.
For each case, the first line is a number N which means the number of cards that Alice and Bob have respectively. Each of the following N (N <= 100,000) lines contains two integers h (h <= 1,000,000,000) and w (w <= 1,000,000,000) which means the height and width of Alice’s card, then the following N lines means that of Bob’s.

输出

For each test case, output an answer using one line which contains just one number.

样例

2
2
1 2
3 4
2 3
4 5
3
2 3
5 7
6 8
4 1
2 5
3 4 
1
2

题意

给两组 矩形 让我们查找 第一矩形最多有几个比第二组大?

明显的贪心 先将矩形按长x升序排列 然后每次 查找 符合 A[i].x>B[j].x 条件的 B组矩形 扔进multiset里面
multiset里面每次进行二分查找比 A[i].y 大的数 找到了在集合中删去 计数++

AC代码

#include<bits/stdc++.h>
using namespace std;

#define LL long long
#define CLR(a,b) memset(a,(b),sizeof(a))

const int MAXN = 1e5+111;
multiset<int> mst;
multiset<int>::iterator it;
struct node
{
    int x, y;
    friend bool operator < (node a, node b) {
        return a.x < b.x;
    }
}A[MAXN],B[MAXN];
int main()
{
    ios::sync_with_stdio(false);
    int n, T;
    cin >> T;
    while(T--) {
        mst.clear();
        cin >> n;
        for(int i = 0; i < n; i++) cin >> A[i].x >> A[i].y;
        for(int i = 0; i < n; i++) cin >> B[i].x >> B[i].y;
        sort(A, A+n);
        sort(B, B+n);
        int k = 0;
        for(int i = 0,j = 0; i < n; i++) {
            while(j<n && A[i].x >= B[j].x) mst.insert(B[j++].y);
            if(mst.empty()) continue;
            it = mst.upper_bound(A[i].y);
            if(it != mst.begin()) {
                it--;
                mst.erase(it);
                k++;
            }

        }
        cout << k << endl;
    }


return 0;
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值