#include <iostream> #include <vector> #include <cstdio> #include <algorithm> using namespace std; int main() { int n; scanf("%d", &n); vector<int> monety(201719); int maks=0; for(int i=0; i<n; i++) { int a; scanf("%d", &a); if(a>maks) maks=a; monety[a]++; } for(int i=0; i<=maks; i++) { monety[i+1]+=monety[i]/2; } long long wynik=maks; while(monety[maks]/2!=0) { monety[maks]/=2; wynik++; } printf("%lld",wynik); 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 | #include <iostream> #include <vector> #include <cstdio> #include <algorithm> using namespace std; int main() { int n; scanf("%d", &n); vector<int> monety(201719); int maks=0; for(int i=0; i<n; i++) { int a; scanf("%d", &a); if(a>maks) maks=a; monety[a]++; } for(int i=0; i<=maks; i++) { monety[i+1]+=monety[i]/2; } long long wynik=maks; while(monety[maks]/2!=0) { monety[maks]/=2; wynik++; } printf("%lld",wynik); return 0; } |