#include<bits/stdc++.h> using namespace std; double tab[((int)(1e6))+1]; long long wyks[((int)(1e6))+1]; long long wyn,a; int main(){ ios_base::sync_with_stdio( 0 ); cin.tie( 0 ); cin>>a; for(int i=0;i<a;i++){ cin>>tab[i]; double temp = tab[i]; while(temp > 10){ temp /= 10; wyks[i]++; } tab[i] = temp; } for(int i=1;i<a;i++){ if(wyks[i-1] == wyks[i]){ if(tab[i] < tab[i-1] ){ wyks[i] += 1; wyn += 1; } else if(tab[i] == tab[i-1]){ wyks[i] = wyks[i-1]; wyn += wyks[i-1]; tab[i] = tab[i-1]; } } else if( wyks[i-1] > wyks[i] ){ if(tab[i] < tab[i-1]){ wyn += abs(wyks[i-1]-wyks[i]) + 1; wyks[i] = wyks[i-1] + 1; } else if(tab[i] == tab[i-1]) { wyn += abs(wyks[i-1]-wyks[i]); wyks[i] = wyks[i-1]; tab[i] = tab[i-1]; } } } cout<<wyn; 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<bits/stdc++.h> using namespace std; double tab[((int)(1e6))+1]; long long wyks[((int)(1e6))+1]; long long wyn,a; int main(){ ios_base::sync_with_stdio( 0 ); cin.tie( 0 ); cin>>a; for(int i=0;i<a;i++){ cin>>tab[i]; double temp = tab[i]; while(temp > 10){ temp /= 10; wyks[i]++; } tab[i] = temp; } for(int i=1;i<a;i++){ if(wyks[i-1] == wyks[i]){ if(tab[i] < tab[i-1] ){ wyks[i] += 1; wyn += 1; } else if(tab[i] == tab[i-1]){ wyks[i] = wyks[i-1]; wyn += wyks[i-1]; tab[i] = tab[i-1]; } } else if( wyks[i-1] > wyks[i] ){ if(tab[i] < tab[i-1]){ wyn += abs(wyks[i-1]-wyks[i]) + 1; wyks[i] = wyks[i-1] + 1; } else if(tab[i] == tab[i-1]) { wyn += abs(wyks[i-1]-wyks[i]); wyks[i] = wyks[i-1]; tab[i] = tab[i-1]; } } } cout<<wyn; return 0; } |