#include <cstdio> #include <algorithm> #include <vector> using namespace std; const int maxn = 1000005; const int d = 300000; int jest[maxn]; int n, wynik; int main() { scanf("%d", &n); for(int i = 1; i <= n; i++) { int a; scanf("%d", &a); jest[a] ++; } for(int i = 0; i < d; i++) { jest[ i + 1 ] += jest[i] / 2; if( jest[i] > 0 ) wynik = i; } printf("%d", wynik); }
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 | #include <cstdio> #include <algorithm> #include <vector> using namespace std; const int maxn = 1000005; const int d = 300000; int jest[maxn]; int n, wynik; int main() { scanf("%d", &n); for(int i = 1; i <= n; i++) { int a; scanf("%d", &a); jest[a] ++; } for(int i = 0; i < d; i++) { jest[ i + 1 ] += jest[i] / 2; if( jest[i] > 0 ) wynik = i; } printf("%d", wynik); } |