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
#include <bits/stdc++.h>

using namespace std;

struct num {
    deque<pair<int, int>> digits;
    int len;

    num(int a): len{0} {
        digits.emplace_back(a % 10, 1);
        a /= 10;

        while (a) {
            ++len;
            int digit = a % 10;
            a /= 10;
            if (digits.back().first == digit) {
                ++digits.back().second;
            } else {
                digits.emplace_back(digit, 1);
            }
        }
    }

    void inc() {
        pair<int, int> p{0, 0};
        if (digits.front().first == 9) {
            if (digits.size() == 1) {
                digits.front().first = 0;
                digits.emplace_back(1, 1);
                ++len;
                return;
            }
            p.second = digits.front().second; 
            digits.pop_front();
        }

        if (digits.front().second == 1) {
            ++digits.front().first;
        } else {
            --digits.front().second;
            digits.emplace_front(digits.front().first + 1, 1);
        }

        if (p.second) {
            digits.emplace_front(p);
        }
    }

    int pref(const num& n) const {
        int i = digits.size() - 1, j = n.digits.size() - 1;
        int il = digits[i].second, jl = n.digits[j].second;

        while (i >= 0 && j >= 0) {
            int l = digits[i].first;
            if (--il == 0) {
                --i;
                if (i >= 0) {
                    il = digits[i].second;
                }
            }
            int r = n.digits[j].first;
            if (--jl == 0) {
                --j;
                if (j >= 0) {
                    jl = n.digits[j].second;
                }
            }
            if (l < r) {
                return -1;
            }
            if (l > r) {
                return 1;
            }
        }

        return 0;
    }

    int comp(const num& n) const {
        if (len != n.len) {
            return len < n.len ? -1 : 1;
        }
        return pref(n);
    }

    void pad_0(int len) {
        this->len += len;
        if (digits.front().first == 0) {
            digits.front().second += len;
        } else {
            digits.emplace_front(0, len);
        }
    }
};

int main() {
    
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int n;
    cin >> n;

    int tmp;
    cin >> tmp;
    num p(tmp);
    long long count = 0;

    for (int i = 1; i < n; ++i) {
        int a;
        cin >> a;

        num cur(a);

        int c = p.comp(cur);
        if (c == -1) {
            p = move(cur);
            continue;
        } else if (c == 0) {
            p.pad_0(1);
            ++count;
            continue;
        }

        int pref = p.pref(cur);

        if (pref == -1) {
            count += p.len - cur.len;
            cur.pad_0(p.len - cur.len);
            p = move(cur);
        } else if (pref == 1) {
            count += p.len - cur.len + 1;
            cur.pad_0(p.len - cur.len + 1);
            p = move(cur);
        } else {
            int old_len = p.len;
            p.inc();
            if (p.pref(cur) == 0) {
                count += p.len - cur.len;
            } else {
                count += old_len - cur.len + 1;
                cur.pad_0(old_len - cur.len + 1);
                p = move(cur);
            }
        }
    }

    cout << count << endl;

    return 0;
}