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
#include <bits/stdc++.h>
using namespace std;
int dp[200002], dodane[200002], pocztab[200002];
long long tab[200002], pot10[11];
bool pref(long long a, long long b)
{
    for (int i=0; i<=10; i++)
    {
        if (a==b)
            return true;
        b/=10;
    }
    return false;
}
void plus1(int i)
{
    ///do bardzo przetestowania!!!
    if (dodane[i-1]+1>=pot10[min(dp[i-1], 8)])
    {
        if (pref(tab[i], tab[i-1]+1))
        {
            tab[i]=tab[i-1]+1;
            dp[i]=dp[i-1];
        }
        else
        {
            while (tab[i]<=tab[i-1])
                tab[i]*=10;
            if (tab[i-1]*10>=10000000000ll)
                dp[i]=dp[i-1]+1;
        }
    }
    else
    {
        dp[i]=dp[i-1];
        dodane[i]=dodane[i-1]+1;
        tab[i]=tab[i-1];
    }
}
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    pot10[0]=1;
    for (int i=1; i<=8; i++)
        pot10[i]=pot10[i-1]*10;
    int n;
    cin >> n;
    for (int i=0; i<n; i++)
    {
        cin >> tab[i];
        pocztab[i]=tab[i];
    }
    for (int i=1; i<n; i++)
    {
        if (pref(tab[i], tab[i-1]))
        {
            plus1(i);
        }
        else
        {
            while (tab[i]<tab[i-1])
            {
                tab[i]*=10;
            }
            if (tab[i]>=1000000000)
            {
                dp[i]=dp[i-1];
                if (tab[i]>=10000000000ll)
                {
                    tab[i]/=10;
                    dp[i]++;
                }
            }
        }
    }
    long long wyn=0;
    for (int i=0; i<n; i++)
    {
        //cout << tab[i] << "\n";
        wyn+=dp[i];
        while (tab[i]>pocztab[i])
        {
            tab[i]/=10;
            wyn++;
        }
    }
    cout << wyn;
}