aboutsummaryrefslogtreecommitdiff
path: root/store/works/life/2020-algorithm-contest/code/2.cpp
blob: 2d5fded49afd41847643a27745bd518bd8827cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <iostream>
#include <map>
#include <vector>
#include <algorithm>

int main()
{
    int size;
    std::cin >> size;
    int target;
    std::cin >> target;

    std::map<int, int> nums;

    for (int i = 0; i < size; i++)
    {
        int v;
        std::cin >> v;

        nums[v]++;
    }

    std::vector<int> counts;
    std::vector<std::vector<int>> sets;

    for (const auto &pair : nums)
    {
        auto iter = std::lower_bound(counts.cbegin(), counts.cend(), pair.second);
        if (iter != counts.cend() && *iter == pair.second)
        {
            sets[iter - counts.cbegin()].push_back(pair.first);
        }
        else
        {
            const auto offset = iter - counts.cbegin();
            counts.insert(iter, pair.second);
            sets.insert(sets.cbegin() + offset, std::vector<int>{pair.first});
        }
    }

    if (target > counts.size())
    {
        std::cout << 0;
    }
    else
    {
        const auto &set = sets[counts.size() - target];
        std::cout << set.size() << '\n';
        for (auto i : set)
            std::cout << i << ' ';
    }

    return 0;
}