我是靠谱客的博主 害羞钢铁侠,最近开发中收集的这篇文章主要介绍Codeforces 702B【二分】,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题意:
给一个a数组,输出有多少对相加是等于2^x的。1<=a[i]<=1e9,n<=1e5
思路:
a[i]+a[j]=2^x 对于每个a[i],枚举x,然后二分查找a[j];
ps:
①:数组大的简单题,基本上就是二分这种降低复杂度;
②:对于a+b=c,三个对象都有考虑的意义;

加一发挫code……

#include<cstdio>
#include<iostream>
#include<queue>
#include<math.h>
#include<string.h>
#include<algorithm>
using namespace std;
#define eps 1e-8
typedef __int64 LL;


const int N=1e5+10;
int a[N];

int t[35];
void init()
{
    for(int i=0;i<31;i++)
        t[i]=1<<i;
}

int main()
{
    init();
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
        scanf("%d",&a[i]);
    sort(a,a+n);

    int temp,s,e,mid;
    LL ans=0;
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<31;j++)
        {
            temp=t[j]-a[i];
            if(temp<1||temp>1e9)
                continue;
            s=lower_bound(a+i+1,a+n,temp)-a;//第一个等于temp的位置;
            e=upper_bound(a+i+1,a+n,temp)-a;//大于temp的位置;
            ans+=e-s;
        }
    }
    printf("%lldn",ans);
    return 0;
}

其实更好利用那个等式a+b=c;
我们可以直接标记数组元素的个数,然后中间直接操作。

再加一发挫code…….

#include<cstdio>
#include<iostream>
#include<map>
#include<math.h>
#include<string.h>
#include<algorithm>
using namespace std;
#define eps 1e-8
typedef __int64 LL;

map<int,int>cnt;

int main()
{
    LL ans=0;
    int n;
    int x,t;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
        scanf("%d",&t);
        for(int j=0;j<31;j++)
        {
            x=1<<j;
            if(x>t)
                ans+=cnt[x-t];
        }
        cnt[t]++;
    }
    printf("%I64dn",ans);
    return 0;
}

转载于:https://www.cnblogs.com/keyboarder-zsq/p/5934888.html

最后

以上就是害羞钢铁侠为你收集整理的Codeforces 702B【二分】的全部内容,希望文章能够帮你解决Codeforces 702B【二分】所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部