Codeforces Cutting Out 二分思想

D. Cutting Out

time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given an array ss consisting of nn integers.

You have to find any array tt of length kk such that you can cut out maximum number of copies of array tt from array ss.

Cutting out the copy of tt means that for each element titi of array tt you have to find titi in ss and remove it from ss. If for some titi you cannot find such element in ss, then you cannot cut out one more copy of tt. The both arrays can contain duplicate elements.

For example, if s=[1,2,3,2,4,3,1]s=[1,2,3,2,4,3,1] and k=3k=3 then one of the possible answers is t=[1,2,3]t=[1,2,3]. This array tt can be cut out 22 times.

  • To cut out the first copy of tt you can use the elements [1,2––,3,2,4,3––,1––][1,2_,3,2,4,3_,1_] (use the highlighted elements). After cutting out the first copy of tt the array ss can look like [1,3,2,4][1,3,2,4].
  • To cut out the second copy of tt you can use the elements [1––,3––,2––,4][1_,3_,2_,4]. After cutting out the second copy of tt the array ss will be [4][4].

Your task is to find such array tt that you can cut out the copy of tt from ss maximum number of times. If there are multiple answers, you may choose any of them.

Input

The first line of the input contains two integers nn and kk (1≤k≤n≤2⋅1051≤k≤n≤2⋅105) — the number of elements in ss and the desired number of elements in tt, respectively.

The second line of the input contains exactly nn integers s1,s2,…,sns1,s2,…,sn (1≤si≤2⋅1051≤si≤2⋅105).

Output

Print kk integers — the elements of array tt such that you can cut out maximum possible number of copies of this array from ss. If there are multiple answers, print any of them. The required array tt can contain duplicate elements. All the elements of tt (t1,t2,…,tkt1,t2,…,tk) should satisfy the following condition: 1≤ti≤2⋅1051≤ti≤2⋅105.

Examples

input

Copy

7 3
1 2 3 2 4 3 1

output

Copy

1 2 3 

input

Copy

10 4
1 3 1 3 10 3 7 7 12 3

output

Copy

7 3 1 3

input

Copy

15 2
1 2 1 1 1 2 1 1 2 1 2 1 1 1 1

output

Copy

1 1 

Note

The first example is described in the problem statement.

In the second example the only answer is [7,3,1,3][7,3,1,3] and any its permutations. It can be shown that you cannot choose any other array such that the maximum number of copies you can cut out would be equal to 22.

In the third example the array tt can be cut out 55 times.

题目链接:http://codeforces.com/problemset/problem/1077/D

题意:给你一个长度为n序列,现在要你选出一个长度为k的子序列,
每次在原序列中拿出这个子序列,使可以拿的次数最多,输出这个子序列。

用二分的思想最终的次数即可

#include <bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef pair < int, int > P ;
const int Maxn = 2e5 + 10 ;

int n, m ;
int c[Maxn] ;
vector < P > ve ;

bool check (int x){
    int Now = 0 ;
    for (auto i : ve){
        if (i.first < x) break ;
        Now += i.first / x ;
        if (Now >= m) return true ;
    }
    return false ;
}

int main (){
    cin >> n >> m ;
    int x ;
    for (int i = 0; i < n; i++){
        cin >> x ;
        c[x]++ ;
    }
    for (int i = 0; i < Maxn; i++){
        ve.push_back(make_pair(c[i], i)) ;
    }
    sort(ve.begin(), ve.end(), [](P a, P b){return a > b ;}) ;
//    for (int i = 0; i < 10; i++){
//        cout << ve[i].first << " " << ve[i].second << endl ;
//    }
    int l = 1, r = Maxn ;
    while (l < r){
        x = (l + r + 1) >> 1 ;
        if (check(x)) l = x ;
        else r = x - 1 ;
    }
    vector < int > ans ;
    for (int i = 0; i < ve.size(); i++){
        for (int j = 0 ;j < ve[i].first / l; j++){
            if (ans.size() == m) break ;
            else ans.push_back(ve[i].second) ;
        }
    }
    for (auto i : ans)  cout << i << " " ;
    cout << endl ;
    return 0 ;
}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值