本文主要是介绍Codeforces Round #496 (Div. 3) 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.
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).
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.
6 4 7 1 5 4 9
1
5 1 2 3 4 5
2
1 16
1
4 1 1 1 1023
0
In the first example, it is enough to delete one element a4=5a4=5. The remaining elements form the sequence [4,7,1,4,9][4,7,1,4,9], which is good.
题意:给你n个数,这些数中任意两个数的和(下标不能相等),如果是2的幂次方就满足条件,输出不满足数的个数
思路:先打表找出(1~30)2的幂次方,然后把每一个数都放入map里面(去重并统计个数),然后两层for枚举,还要注意类似2+2符合条件,但只有一个2也是不符合的。
ACDAIMA:
#include <bits/stdc++.h>
using namespace std;
int a[120];
map <int,int> mp;
int main()
{int n, x;for(int i = 1; i < 31; i++) a[i] = 1 << i;while(~scanf("%d",&n)){mp.clear();for(int i = 0; i < n; i++){scanf("%d", &x);mp[x]++;}int ans = 0;for(auto i: mp){int t = i.first;bool flag = false;for(int j = 1; j < 31; j++){if(a[j] - t == t){if(mp.count(t) && mp[t] > 1) { flag = true; break; }}else if(mp.count(a[j]-t)) { flag = true; break; }}if(!flag) ans += i.second;}printf("%d\n",ans);}}
这篇关于Codeforces Round #496 (Div. 3) C. Summarize to the Power of Two(打表暴力)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!