C - Summarize to the Power of Two 解题报告

A sequence a1,a2,…,ana1,a2,…,an is called good if, for each element aiai, there exists an element ajaj (i≠ji≠j) such that ai+ajai+aj is a power of two (that is, 2d2d for some non-negative integer dd).

For example, the following sequences are good:

  • [5,3,11][5,3,11] (for example, for a1=5a1=5 we can choose a2=3a2=3. Note that their sum is a power of two. Similarly, such an element can be found for a2a2 and a3a3),
  • [1,1,1,1023][1,1,1,1023],
  • [7,39,89,25,89][7,39,89,25,89],
  • [][].

Note that, by definition, an empty sequence (with a length of 00) is good.

For example, the following sequences are not good:

  • [16][16] (for a1=16a1=16, it is impossible to find another element ajaj such that their sum is a power of two),
  • [4,16][4,16] (for a1=4a1=4, it is impossible to find another element ajaj such that their sum is a power of two),
  • [1,3,2,8,8,8][1,3,2,8,8,8] (for a3=2a3=2, it is impossible to find another element ajaj such that their sum is a power of two).

You are given a sequence a1,a2,…,ana1,a2,…,an. What is the minimum number of elements you need to remove to make it good? You can delete an arbitrary set of elements.

Input

The first line contains the integer nn (1≤n≤1200001≤n≤120000) — the length of the given sequence.

The second line contains the sequence of integers a1,a2,…,ana1,a2,…,an (1≤ai≤1091≤ai≤109).

Output

Print the minimum number of elements needed to be removed from the given sequence in order to make it good. It is possible that you need to delete all nn elements, make it empty, and thus get a good sequence.

Examples

Input

6
4 7 1 5 4 9

Output

1

Input

5
1 2 3 4 5

Output

2

Input

1
16

Output

1

Input

4
1 1 1 1023

Output

0

思路:直接暴力写:

先在int范围内将2的幂次进行预处理,然后将每个出现过的数用map存起来,然后用二的幂减去输入数得到的数是否属于输入数的集合。

因为存在两个数相同的情况,所以要记录所输入相同数的次数。

#include<iostream>
#include<algorithm>
#include<cstring>
#include<map>
#include<cmath>
using namespace std;
const int maxn=2e6;
map<long long,long long>m;
long long a[maxn];
int n;
long long d[40];
int main()
{
	d[0]=1;
	for(int i=1;i<=31;i++)
	{
		d[i]=d[i-1]*2;
	}
	cin>>n;
	m.clear();
	int cnt=0;
	for(int i=0;i<n;i++)
	{
		cin>>a[i];
		m[a[i]]++;
	}
	for(int i=0;i<n;i++)
	{
		int flag=0;
		for(int j=0;j<=31;j++)
		{
			if(a[i]>=d[j]) continue;
			else
			{
				int cha=d[j]-a[i];
				if(m[cha])
				{
					if(a[i]==cha) {
						if(m[cha]>1)
						{
							flag=1;
							break;
						}
					}
					else
					{
						flag=1;
						break;
					}
				}
			}
		}
		if(!flag) cnt++;
	}
	cout<<cnt<<endl;
	return 0;
}

猜你喜欢

转载自blog.csdn.net/csustudent007/article/details/81085429