CF1005C.Summarize to the Power of Two

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A sequence a1,a2,,ana_1, a_2, \dots, a_n is called good if, for each element aia_i , there exists an element aja_j ( iji \ne j ) such that ai+aja_i+a_j is a power of two (that is, 2d2^d for some non-negative integer dd ).

For example, the following sequences are good:

  • [5,3,11][5, 3, 11] (for example, for a1=5a_1=5 we can choose a2=3a_2=3 . Note that their sum is a power of two. Similarly, such an element can be found for a2a_2 and a3a_3 ),
  • [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=16a_1=16 , it is impossible to find another element aja_j such that their sum is a power of two),
  • [4,16][4, 16] (for a1=4a_1=4 , it is impossible to find another element aja_j such that their sum is a power of two),
  • [1,3,2,8,8,8][1, 3, 2, 8, 8, 8] (for a3=2a_3=2 , it is impossible to find another element aja_j such that their sum is a power of two).

You are given a sequence a1,a2,,ana_1, a_2, \dots, a_n . 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 ( 1n1200001 \le n \le 120000 ) — the length of the given sequence.

The second line contains the sequence of integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ).

输出格式

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.

输入输出样例

  • 输入#1

    6
    4 7 1 5 4 9
    

    输出#1

    1
    
  • 输入#2

    5
    1 2 3 4 5
    

    输出#2

    2
    
  • 输入#3

    1
    16
    

    输出#3

    1
    
  • 输入#4

    4
    1 1 1 1023
    

    输出#4

    0
    

说明/提示

In the first example, it is enough to delete one element a4=5a_4=5 . The remaining elements form the sequence [4,7,1,4,9][4, 7, 1, 4, 9] , which is good.

首页