cf C. Duff and Weight Lifting (二进制编码_好题)

已知一堆数列,找出k的元素使得 2a1 + 2a2 + ... + 2ak = 2x      

 

我们使用二进制编码来实现,最高位为1,其余都为0,才能保证存在2^x这样一个数字!!!!


这个还有一个要注意的是: 要用ios::sync_with_stdio(false);关闭同步,因为数据量大,会超时

Recently, Duff has been practicing weight lifting. As a hard practice, Malek gave her a task. He gave her a sequence of weights. Weight of i-th of them is 2wi pounds. In each step, Duff can lift some of the remaining weights and throw them away. She does this until there's no more weight left. Malek asked her to minimize the number of steps.

Duff is a competitive programming fan. That's why in each step, she can only lift and throw away a sequence of weights 2a1, ..., 2ak if and only if there exists a non-negative integer x such that 2a1 + 2a2 + ... + 2ak = 2x, i. e. the sum of those numbers is a power of two.

Duff is a competitive programming fan, but not a programmer. That's why she asked for your help. Help her minimize the number of steps.

Input

The first line of input contains integer n (1 ≤ n ≤ 106), the number of weights.

The second line contains n integers w1, ..., wn separated by spaces (0 ≤ wi ≤ 106 for each 1 ≤ i ≤ n), the powers of two forming the weights values.

Output

Print the minimum number of steps in a single line.

Sample test(s)
input
5
1 1 2 3 3
output
2
input
4
0 1 2 3
output
4
Note

In the first sample case: One optimal way would be to throw away the first three in the first step and the rest in the second step. Also, it's not possible to do it in one step because their sum is not a power of two.

In the second sample case: The only optimal way is to throw away one weight in each step. It's not possible to do it in less than 4 steps because there's no subset of weights with more than one weight and sum equal to a power of two.



#include <iostream>
using namespace std;
const int MAX = 1000100;
int a[MAX];
int main()
{
	ios::sync_with_stdio(false);
	int n;
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		int x;
		cin >> x;
		a[x]++;
	}
	int ans = 0;
	for (int i = 0; i < MAX - 1; i++)
	{
		a[i + 1] += a[i] / 2;
		a[i] %= 2;
		ans += a[i];
	}
	cout << ans << endl;
	return 0;








你可能感兴趣的:(cf C. Duff and Weight Lifting (二进制编码_好题))