Codeforces Round #521 (Div. 3) E. Thematic Contests(二分)

E. Thematic Contests

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Polycarp has prepared nn competitive programming problems. The topic of the ii-th problem is aiai, and some problems' topics may coincide.

Polycarp has to host several thematic contests. All problems in each contest should have the same topic, and all contests should have pairwise distinct topics. He may not use all the problems. It is possible that there are no contests for some topics.

Polycarp wants to host competitions on consecutive days, one contest per day. Polycarp wants to host a set of contests in such a way that:

  • number of problems in each contest is exactly twice as much as in the previous contest (one day ago), the first contest can contain arbitrary number of problems;
  • the total number of problems in all the contests should be maximized.

Your task is to calculate the maximum number of problems in the set of thematic contests. Note, that you should not maximize the number of contests.

Input

The first line of the input contains one integer nn (1≤n≤2⋅1051≤n≤2⋅105) — the number of problems Polycarp has prepared.

The second line of the input contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤1091≤ai≤109) where aiai is the topic of the ii-th problem.

Output

Print one integer — the maximum number of problems in the set of thematic contests.

Examples

input

Copy

18
2 1 2 10 2 10 10 2 2 1 10 10 10 10 1 1 10 10

output

Copy

14

input

Copy

10
6 6 6 3 6 1000000000 3 3 6 6

output

Copy

9

input

Copy

3
1337 1337 1337

output

Copy

3

Note

In the first example the optimal sequence of contests is: 22 problems of the topic 11, 44 problems of the topic 22, 88 problems of the topic 1010.

In the second example the optimal sequence of contests is: 33 problems of the topic 33, 66 problems of the topic 66.

In the third example you can take all the problems with the topic 13371337 (the number of such problems is 33 so the answer is 33) and host a single contest.

题目大意:

给个n问题 每个问题有个topic 举行多场比赛 要求一每场比赛的topic相同 要求二后一场比赛题目数是前一场题目数二倍 

求最大使用题目数。

题目给的是1e9 可以离散化到2e5来处理。

二分数组

ac代码:

#include<bits/stdc++.h>
using namespace std;
//#define mp make_pair
#define CL(a, b) memset(a, b, sizeof(a))
#define debug(x) cout<<"debug"<<x<<"\n"
//#define sc scanf
//#define pr printf

const int N = 2*1e5+10;
int a[N];
map <int ,int>ma;
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        int cnt =0;
        ma.clear();
        memset(a,0,sizeof(a));
        for(int i=0; i<n; i++)
        {
            int x;
            scanf("%d",&x);
            if(!ma[x])
            {
                ma[x] = ++cnt;
            }
            a[ma[x]]++;///离散化
        }

//        for(int i=1; i<=cnt; i++)
//        {
//            printf("%d*",a[i]);
//        }
//        puts("");
        sort(a+1,a+cnt+1);
        int ans = 1;
        for(int i=1; i<=n; i++)
        {
            int m = 0;
            int l = 1;
            for(int j=i; j<=n; j=j*2)
            {
                int tmp = lower_bound(a+l,a+cnt+1,j)-a;
                if(tmp == cnt+1)
                    break;
                l= tmp+1;
                m += j;
            }
            ans = max(ans,m);
        }
        printf("%d\n",ans);
    }
    return 0;
}

参考大佬博客:https://blog.csdn.net/nucleare/article/details/84191237

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值