#include <iostream>
#include <string>
#include <stdlib.h>
#include <algorithm>
#include <vector>
using namespace std;
struct greaterDesc
{
template<class T>
bool operator()(T const &a, T const &b) const { return a > b; }
};
int GetHighestPowerOf2(vector<int> v)
{
if (v.size() == 1)
{
return v[0];
}
sort(v.begin(), v.end(), greaterDesc());
bool _continue = true;
bool _checkNext = true;
int cutNumbers = 0;
while (_continue)
{
_continue = false;
vector<int> temp(0);
for (int i = 0; i < v.size(); ++i)
{
if (i == v.size() - 1)
{
if (_checkNext)
{
temp.push_back(v[i]);
continue;
}
}
if (_checkNext)
{
if (v[i] == v[i + 1])
{
temp.push_back(v[i] + 1);
_continue = true;
_checkNext = false;
}
else
{
temp.push_back(v[i]);
_checkNext = true;
}
}
else
{
_checkNext = true;
}
}
v = temp;
}
return v[0];
}
int main()
{
int n;
cin >> n;
vector<int> v(n);
for (int i = 0; i<n; ++i) {
cin >> v[i];
}
cout << GetHighestPowerOf2(v);
}
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #include <iostream> #include <string> #include <stdlib.h> #include <algorithm> #include <vector> using namespace std; struct greaterDesc { template<class T> bool operator()(T const &a, T const &b) const { return a > b; } }; int GetHighestPowerOf2(vector<int> v) { if (v.size() == 1) { return v[0]; } sort(v.begin(), v.end(), greaterDesc()); bool _continue = true; bool _checkNext = true; int cutNumbers = 0; while (_continue) { _continue = false; vector<int> temp(0); for (int i = 0; i < v.size(); ++i) { if (i == v.size() - 1) { if (_checkNext) { temp.push_back(v[i]); continue; } } if (_checkNext) { if (v[i] == v[i + 1]) { temp.push_back(v[i] + 1); _continue = true; _checkNext = false; } else { temp.push_back(v[i]); _checkNext = true; } } else { _checkNext = true; } } v = temp; } return v[0]; } int main() { int n; cin >> n; vector<int> v(n); for (int i = 0; i<n; ++i) { cin >> v[i]; } cout << GetHighestPowerOf2(v); } |
English