我是靠谱客的博主 多情大炮,最近开发中收集的这篇文章主要介绍CodeForces 702B Powers of Two,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

简单题。

开一个$map$记录一下每个数字出现了几次,那么读入的时候$f[a[i]]+1$。

计算$a[i]$做出的贡献的时候,先把$f[a[i]]-1$,然后再枚举$x$,答案加上$f[{2^x} - a[i]]$。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0),eps=1e-8;
void File()
{
    freopen("D:\in.txt","r",stdin);
    freopen("D:\out.txt","w",stdout);
}
template <class T>
inline void read(T &x)
{
    char c = getchar(); x = 0;while(!isdigit(c)) c = getchar();
    while(isdigit(c)) { x = x * 10 + c - '0'; c = getchar();  }
}

const int maxn=100010;
LL a[maxn],ans;
map<LL,int>f;
int n;

int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%lld",&a[i]),f[a[i]]++;
    for(int i=1;i<=n;i++)
    {
        f[a[i]]--; LL sum=1;
        for(int j=0;j<=32;j++)
        {
            ans=ans+f[sum-a[i]];
            sum=sum*2;
        }
    }
    printf("%lldn",ans);
    return 0;
}

 

转载于:https://www.cnblogs.com/zufezzt/p/5802951.html

最后

以上就是多情大炮为你收集整理的CodeForces 702B Powers of Two的全部内容,希望文章能够帮你解决CodeForces 702B Powers of Two所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部