#include <iostream>
using namespace std;
int main()
{
int n, a, tabSize = 201718 + 25;
int tab[tabSize];
cin>>n;
for(int i=0; i < tabSize; i++) {
tab[i] = 0;
}
for(int i=0; i < n; i++) {
cin>>a;
tab[a]++;
}
for(int i=0; i < tabSize; i++) {
if (tab[i] > 1) {
bool odd = tab[i] % 2 == 1 ? true : false;
tab[i] /= 2;
int j = 1;
while(tab[i] > 0) {
if (tab[i] % 2 == 1) {
tab[i + j]++;
}
j++;
tab[i] /= 2;
}
if (odd) {
tab[i] = 1;
}
}
}
int max = 0;
for (int i = tabSize - 1; i >= 0; i--){
if (tab[i] == 1) {
cout<<i<<endl;
break;
}
}
return 0;
}
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 | #include <iostream> using namespace std; int main() { int n, a, tabSize = 201718 + 25; int tab[tabSize]; cin>>n; for(int i=0; i < tabSize; i++) { tab[i] = 0; } for(int i=0; i < n; i++) { cin>>a; tab[a]++; } for(int i=0; i < tabSize; i++) { if (tab[i] > 1) { bool odd = tab[i] % 2 == 1 ? true : false; tab[i] /= 2; int j = 1; while(tab[i] > 0) { if (tab[i] % 2 == 1) { tab[i + j]++; } j++; tab[i] /= 2; } if (odd) { tab[i] = 1; } } } int max = 0; for (int i = tabSize - 1; i >= 0; i--){ if (tab[i] == 1) { cout<<i<<endl; break; } } return 0; } |
English