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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
//Autor: Mateusz Wasylkiewicz
//Zawody: Potyczki Algorytmiczne 2018
//Strona: http://potyczki.mimuw.edu.pl/
//Zadanie: Nowy kontrakt, runda 2B
//Czas: Theta(WEJSCIE)
#include <bits/stdc++.h>
using namespace std;

typedef long long LL;
#define FOR(x, a, b) for (LL x = (a); x <= (b); x++)
#define REP(x, n) for (LL x = 0; x < (n); x++)
#define SIZE(x) LL((x).size())

const LL MAX = 200100;
LL N, a[MAX], potega10[10];

void wczytaj_dane()
{
	cin >> N;
	REP(i, N)
		cin >> a[i];
}

void wypelnij_potega10()
{
	potega10[0] = 1;
	FOR(i, 1, 9)
		potega10[i] = 10 * potega10[i - 1];
}

inline char znakuj(LL cyfra)
{
	return char(LL('0') + cyfra);
}

inline LL liczbuj(char cyfra)
{
	return LL(cyfra) - LL('0');
}

inline string napis(LL b)
{
	LL pom[20], pom_roz = 0;
	while (b > 0)
	{
		pom[pom_roz++] = b % 10;
		b /= 10;
	}
	
	string wynik(pom_roz, 'a');
	REP(i, pom_roz)
		wynik[pom_roz - 1 - i] = znakuj(pom[i]);
	return wynik;
}

inline void zwiekszo1(string& s)
{
	LL wartosc = atoi(s.c_str());
	s = napis(wartosc + 1);
}

struct T
{
	string mantysa;
	LL wykladnik, dodatek;
	
	T(const string& s) : mantysa(s), wykladnik(0), dodatek(0) {}
	
	inline void ustaw(const string& b, LL zera)
	{
		LL k = min(zera, 10 - SIZE(b));
		mantysa = string(SIZE(b) + k, '0');
		mantysa.replace(0, SIZE(b), b);
		wykladnik = zera - k;
		dodatek = 0;		
	}
	
	inline void zwieksz1()
	{
		if (wykladnik == 0)
		{
			zwiekszo1(mantysa);
			if (SIZE(mantysa) > 10)
			{
				assert(SIZE(mantysa) == 11);
				wykladnik = 1;
				dodatek = liczbuj(mantysa[10]);
				mantysa.erase(10);
			}
		}
		else
		{
			dodatek++;
			if (wykladnik < 10 && dodatek == potega10[wykladnik])
			{
				zwiekszo1(mantysa);
				assert(SIZE(mantysa) == 10);
				dodatek = 0;
			}
		}
	}
	
	inline bool same_dziewiatki(LL poz) const
	{
		assert(poz <= SIZE(mantysa));
		FOR(i, poz, SIZE(mantysa) - 1)
			if (mantysa[i] != '9')
				return false;
		return wykladnik < 10 && dodatek + 1 == potega10[wykladnik];
	}
	
	inline LL rozwiaz0(const string& b)
	{
		if (SIZE(mantysa) < SIZE(b))
		{
			assert(wykladnik == 0);
			assert(dodatek == 0);
		
			mantysa = b;
			wykladnik = dodatek = 0;
			return 0;
		}
	
		string pref = mantysa.substr(0, SIZE(b));
		if (pref == b)
		{
			if (same_dziewiatki(SIZE(b)))
			{
				LL wynik = SIZE(mantysa) + wykladnik - SIZE(b) + 1;
				ustaw(b, wynik);
				return wynik;
			}
			else
			{
				LL wynik = SIZE(mantysa) + wykladnik - SIZE(b);
				zwieksz1();
				return wynik;
			}
		}
		else
		{
			LL wynik = SIZE(mantysa) + wykladnik - SIZE(b) + (pref < b ? 0 : 1);
			ustaw(b, wynik);
			return wynik;
		}
	}
};

LL rozwiaz()
{
	T t(napis(a[0]));
	LL wynik = 0;
	FOR(i, 1, N - 1)
		wynik += t.rozwiaz0(napis(a[i]));
	return wynik;
}

void zrob_test()
{
	wypelnij_potega10();
	wczytaj_dane();
	cout << rozwiaz() << '\n';
}

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	zrob_test();
	return 0;
}