2021 ICPC新疆省赛 I - chino with mates ( 二分)向下取整与向上取整的坑

博客内容讲述了如何使用二分查找算法解决一个关于男女嘉宾性格匹配组合的问题。题目要求找到在特定范围内的男性和女性嘉宾的匹配数量,男性嘉宾的特征值为ai,女性嘉宾的特征值为bi。博主在实现过程中遇到了负数除法导致的向下取整错误,修正后得到了正确答案。代码中使用了C++进行实现,通过排序和二分查找计算匹配数。
摘要由CSDN通过智能技术生成

题目链接:https://codeforces.com/group/yz4qgUJSxI/contest/103115/problem/I
一道简单的二分查找题
Chino held a blind date event, there are n male guests and m female
guests attending.

The personality characteristic value of each person can be represented
by an integer, the personality characteristic value of the i-th male
guest is ai , and the personality characteristic value of the j-th
female guest is bj

.

Chino believes that when the calculation result of the personality
characteristic values of two people ai×bj

in a certain range [l,r], the personality of two person is suitable each of them.

Chino would like to know how many matching combinations possible satisfied personality suitability between male and female guests.
Input

The first line contain two positive integers n,m(1≤n,m≤105)

The next line contain n integers ai(−109≤ai≤109)

indicates the personality characteristic value of the male guests.

Then the next line contain m integersbi(−109≤bi≤109)

indicates the personality characteristic value of the female guests.

the final line only contain two integers l,r(−109≤l≤r≤109)

Output

Output an integer on a line to indicate the number of matching combinations. Examples
Input

5 5
1 2 3 4 5
1 2 3 4 5
1 20

Output

24

Input

3 4
-1 -3 -5
-7 -6 -8 -9
9 9

Output

1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Note

For the first example, except that the male guest 5 and the female guest 5 do not meet the conditions, the other conditions are all
legal, so the answer is 25-1=24

For the second example, there is only a legal matching combination for male guest 1 and female guest 4.
这个题本来很简单的二分,L<=ai*bi<=R,两边同时除以一个bi,然后二分查找ai,显然是左边向上取整右边向下取整的范围内找,然后就出现了问题,我当时觉得直接用int型的R除以bi截断小数点就本来是向下取整,不用额外处理,结果。。负数的时候截断就成了向上取整。。

#include <bits/stdc++.h>
typedef long long ll;
const int maxn=100000+10;
using namespace std;
ll a[maxn+10],b[maxn+10];
int main()
{
    ll N,M;
    cin>>N>>M;
    for(int i=0;i<N;i++){
        scanf("%lld",&a[i]);
    }
    for(int j=0;j<M;j++){
        scanf("%lld",&b[j]);
    }
    sort(a,a+N);
    sort(b,b+M);
    ll L,R;
    cin>>L>>R;
    ll ans=0;
    for(int i=0;i<N;i++){
        if(a[i]==0){
            if(L<=0&&0<=R){
                ans+=M;
            }
            continue;
        }
        ll l,r;
        if(a[i]>0){
            l=ceil((double)L/(double)a[i]),r=floor((double)R/a[i]);
        }
        if(a[i]<0){
            l=ceil((double)R/(double)a[i]),r=floor((double)L/a[i]);
        }
        ll left=lower_bound(b,b+M,l)-b;
        ll right=upper_bound(b,b+M,r)-b;
        ans+=right-left;
    }
    cout<<ans<<endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值