#include<bits/stdc++.h> using namespace std; int tab[1000009]; vector<int> roz(long long x){ vector<int> nla, la; while(x>0){ la.push_back(x%10); x/=10; } for(int i=la.size()-1;i>=0;--i){ nla.push_back(la[i]); } return nla; } bool czydainc(vector<int> x, int sizee){ int pos=x.size()-1; ++x[pos]; while(pos>=sizee){ if(x[pos]<10)return 1; x[pos]-=10; --pos; ++x[pos]; } return 0; } int main(){ ios_base::sync_with_stdio(0); int n;cin>>n; for(int i=0;i<n;++i){ cin>>tab[i]; } int zera=-1; vector<int> la; vector<int> nw; la = roz(tab[0]); long long wyn=0; for(int i=1;i<n;++i){ nw = roz (tab[i]); int siz=nw.size(); if(la.size()<20){ int por=0; for(int j=0;j<la.size();++j){ if(j==nw.size()){ nw.push_back(la[j]); } if(la[j] > nw[j]){ por=-1;break; } else if(la[j] < nw[j]){por=1;break;} } if(nw.size()>la.size() && por == 0)por=1; if(por == 0){ if(czydainc(nw, siz)){ int pos=nw.size()-1; ++nw[pos]; while(nw[pos]>=10){ nw[pos]-=10; --pos; ++nw[pos]; } } else{ for(int j=siz;j<nw.size();++j){ nw[j]=0; } nw.push_back(0); } } else if(por == -1){ for(int j=siz;j<nw.size();++j){ nw[j]=0; } for(int j=nw.size();j<=la.size();++j) nw.push_back(0); } else if (por ==1){ for(int j=nw.size();j<la.size();++j) nw.push_back(0); } //for(int j=0;j<nw.size();++j)cerr<<nw[j]<<" "; //cerr<<endl; wyn+=nw.size()-siz; zera=nw.size(); } else{ int por=0; for(int j=0;j<la.size();++j){ if(j==nw.size())nw.push_back(la[j]); if(nw[j] < la[j]){ por = -1;break; } if(nw[j] > la[j]){ por =1; break; } } //cerr<<zera<<endl; if(por==-1)++zera; wyn+=zera-siz; while(nw.size()<la.size())nw.push_back(0); } swap(la, nw); } cout<<wyn<<endl; return 0; } /* 30 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 */
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | #include<bits/stdc++.h> using namespace std; int tab[1000009]; vector<int> roz(long long x){ vector<int> nla, la; while(x>0){ la.push_back(x%10); x/=10; } for(int i=la.size()-1;i>=0;--i){ nla.push_back(la[i]); } return nla; } bool czydainc(vector<int> x, int sizee){ int pos=x.size()-1; ++x[pos]; while(pos>=sizee){ if(x[pos]<10)return 1; x[pos]-=10; --pos; ++x[pos]; } return 0; } int main(){ ios_base::sync_with_stdio(0); int n;cin>>n; for(int i=0;i<n;++i){ cin>>tab[i]; } int zera=-1; vector<int> la; vector<int> nw; la = roz(tab[0]); long long wyn=0; for(int i=1;i<n;++i){ nw = roz (tab[i]); int siz=nw.size(); if(la.size()<20){ int por=0; for(int j=0;j<la.size();++j){ if(j==nw.size()){ nw.push_back(la[j]); } if(la[j] > nw[j]){ por=-1;break; } else if(la[j] < nw[j]){por=1;break;} } if(nw.size()>la.size() && por == 0)por=1; if(por == 0){ if(czydainc(nw, siz)){ int pos=nw.size()-1; ++nw[pos]; while(nw[pos]>=10){ nw[pos]-=10; --pos; ++nw[pos]; } } else{ for(int j=siz;j<nw.size();++j){ nw[j]=0; } nw.push_back(0); } } else if(por == -1){ for(int j=siz;j<nw.size();++j){ nw[j]=0; } for(int j=nw.size();j<=la.size();++j) nw.push_back(0); } else if (por ==1){ for(int j=nw.size();j<la.size();++j) nw.push_back(0); } //for(int j=0;j<nw.size();++j)cerr<<nw[j]<<" "; //cerr<<endl; wyn+=nw.size()-siz; zera=nw.size(); } else{ int por=0; for(int j=0;j<la.size();++j){ if(j==nw.size())nw.push_back(la[j]); if(nw[j] < la[j]){ por = -1;break; } if(nw[j] > la[j]){ por =1; break; } } //cerr<<zera<<endl; if(por==-1)++zera; wyn+=zera-siz; while(nw.size()<la.size())nw.push_back(0); } swap(la, nw); } cout<<wyn<<endl; return 0; } /* 30 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 */ |