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
#include <iostream>
#include <map>
using namespace std;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    map<int, int> liczbaPoteg;

    for (int i = 0; i < n; i++)
    {
        int temp;
        cin >> temp;

        if (liczbaPoteg.find(temp) == liczbaPoteg.end())
            liczbaPoteg[temp] = 1;
        else
            liczbaPoteg[temp]++;
    }

    for (auto itr = liczbaPoteg.begin(); itr != liczbaPoteg.end(); itr++)
    {
        if (itr->second >= 2)
        {
            if (liczbaPoteg.find((itr->first) + 1) == liczbaPoteg.end())
                liczbaPoteg[(itr->first) + 1] = (itr->second) / 2;
            else
                liczbaPoteg[(itr->first) + 1] += (itr->second) / 2;
        }
    }

    cout << liczbaPoteg.rbegin()->first;

    return 0;
}