codeforces-587A-Duff and Weight Lifting

来源:互联网 发布:配置windows卡在100% 编辑:程序博客网 时间:2024/05/21 18:00

codeforces-587A-Duff and Weight Lifting


                    time limit per test1 second     memory limit per test256 megabytes

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.

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.

题目链接:cf-587A

题目大意:2^a1 + 2^a2 + … + 2^ak = 2^x,给出a1,a2….ak,问最少几段满足上式。

题目思路:如样例,1 1 2 3 3,讲1 1连在一起,得到2即 2 2 3 3,将2 2连在一起得到 3 3 3,3 3 连在一起得到 4 3因为这两个数字不同,所以至少有2段。PS:用cin,cout超时,改成scanf就可以了

以下是代码:

#include <vector>#include <map>#include <set>#include <algorithm>#include <iostream>#include <cstdio>#include <cmath>#include <cstdlib>#include <string>#include <cstring>using namespace std;int w[1001000];int cnt[1010000];int main(){    int n;    scanf("%d",&n);    for (int i = 0; i < n; i++)    {        scanf("%d",&w[i]);        cnt[w[i]]++;    }    sort(w,w + n);    int ans = 0;    for(int i = 0; i < 1000100; i++)    {        cnt[i + 1] += cnt[i] / 2;        cnt[i] %= 2;        if (cnt[i]) ans++;      }     printf("%d\n",ans);    return 0;}
0 0