Educational Codeforces Round 42 D. Merge Equals(vector,map)

D. Merge Equals
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given an array of positive integers. While there are at least two equal elements, we will perform the following operation. We choose the smallest value x
that occurs in the array 2 or more times. Take the first two occurrences of x in this array (the two leftmost occurrences). Remove the left of these two occurrences, and the right one is replaced by the sum of this two values (that is, 2⋅x

).

Determine how the array will look after described operations are performed.

For example, consider the given array looks like [3,4,1,2,2,1,1]
. It will be changed in the following way: [3,4,1,2,2,1,1] → [3,4,2,2,2,1] → [3,4,4,2,1] → [3,8,2,1]

.

If the given array is look like [1,1,3,1,1]
it will be changed in the following way: [1,1,3,1,1] → [2,3,1,1] → [2,3,2] → [3,4]

.
Input

The first line contains a single integer n
(2≤n≤150000

) — the number of elements in the array.

The second line contains a sequence from n
elements a1,a2,…,an (1≤ai≤109

) — the elements of the array.
Output

In the first line print an integer k
— the number of elements in the array after all the performed operations. In the second line print k

integers — the elements of the array after all the performed operations.
Examples
Input
Copy

7
3 4 1 2 2 1 1

Output
Copy

4
3 8 2 1

Input
Copy

5
1 1 3 1 1

Output
Copy

2
3 4

Input
Copy

5
10 40 20 50 30

Output
Copy

5
10 40 20 50 30

Note

The first two examples were considered in the statement.

In the third example all integers in the given array are distinct, so it will not change.
解析:看到a[i]的范围就觉得vector开不到,但没想到还有map和vector结合的这种操作,还有map的遍历也要注意一下,可以表示1e9的vector也真是厉害,
知道了这点模拟就好了,每两个数生成一个新数并push_back到对应的val*2

#include<bits/stdc++.h>
#define ll long long
#define inf 0x3f3f3f3f
#define pb push_back
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rep1(i,b,a) for(int i=b;i>=a;i--)
using namespace std;
const int N=2e5+100;
int n;
ll a[N],val[N],res[N];
map <ll,vector<int> > mp;
int main ()
{
    int i,j,k,ans=0;
    cin>>n;
    for (i=1;i<=n;i++)
    {
        cin>>a[i];
        mp[a[i]].push_back(i);
    }
    for(map <ll,vector<int> >::iterator it=mp.begin();it!=mp.end();it++)
    {
        ll val=(*it).first;
        vector <int> tp;
        tp=(*it).second;
        sort(tp.begin(),tp.end());
        int sz=tp.size();
        if (sz%2!=0)
        {
            res[tp[sz-1]]=val;
            ans++;
            sz--;
        }
        for (j=1;j<sz;j+=2)
            mp[val*2].push_back(tp[j]);
    }
    cout<<ans<<endl;
    for (i=1;i<=n;i++)
    {
        if (res[i])
            cout<<res[i]<<' ';
    }
    cout<<endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值