#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <cstdlib> #include <vector> #include <algorithm> #include <cstring> #include <string> #include <map> #include <deque> using namespace std; typedef long long LL; typedef pair<int, int> PI; typedef vector<int> VI; #define ALL(a) (a).begin(),(a).end() #define PB push_back #define MP make_pair #define FT first #define SD second #define Y first #define X second vector<string>token(string a) { vector<string>w; a.push_back(' '); while (!a.empty()) { w.push_back(a.substr(0, a.find(" "))); a = a.substr(a.find(" ") + 1, a.size() - 1); }return w; } map<string, int> mapik; vector<string> amapik; int dodaj(string a) { if (mapik.count(a) == 0) { mapik[a] = mapik.size() - 1; amapik.PB(a); }return mapik[a]; } const int INF = 1000000000; const LL INFINF = 1000000000000000000LL; PI moves4[4] = { MP(1, 0), MP(-1, 0), MP(0, 1), MP(0, -1) }; PI move(PI st, PI m) { return MP(st.first + m.first, st.second + m.second); } int rows, cols; bool on_board(PI p) { return p.first >= 0 && p.second >= 0 && p.first < rows && p.second < cols; } char tmp_str[1000000]; string scanf_string() { scanf("%s", tmp_str); return tmp_str; } inline bool get_bit(int w, int i) { return (w >> i) & 1; } // ========================================================== int n; VI dane; class Numer { public: LL poczatek; LL dopisek; LL cyfry_dopisku; string poczatek_str; string koniec_str; int puste_zera; int start_dopisku_pustego; int start_dopisku_wlasciwego; Numer(LL a, LL dopisek_wartosc, LL c) : poczatek(a), dopisek(dopisek_wartosc), cyfry_dopisku(c) { poczatek_str = to_string(poczatek); koniec_str = to_string(dopisek); start_dopisku_pustego = poczatek_str.size(); start_dopisku_wlasciwego = start_dopisku_pustego + cyfry_dopisku - koniec_str.size(); puste_zera = max(start_dopisku_wlasciwego - start_dopisku_pustego, 0); if (cyfry_dopisku > 0 && koniec_str.size() > cyfry_dopisku) { printf("%d %s", cyfry_dopisku, koniec_str.c_str()); fflush(stdout); throw "Division by zero condition!"; } } int operator<(const Numer &b) const { if (this->cyfry() == b.cyfry()) { /*for (int i = 0; i <(this->cyfry()); i++) { if (this->wartosc(i) != b.wartosc(i)) return this->wartosc(i) < b.wartosc(i); }*/ for (int i = 0; i < max(poczatek_str.size(), b.poczatek_str.size()); i++) { if (this->wartosc(i) != b.wartosc(i)) return this->wartosc(i) < b.wartosc(i); } for (int i = min(start_dopisku_wlasciwego, b.start_dopisku_wlasciwego); i < this->cyfry(); i++) { if (this->wartosc(i) != b.wartosc(i)) return this->wartosc(i) < b.wartosc(i); } return 0; } return this->cyfry() < b.cyfry(); } int wartosc(int pos) const { auto calosc = this->cyfry(); if (pos < poczatek_str.size()) return poczatek_str[pos] - '0'; if (pos < calosc - koniec_str.size()) return 0; else { int pol = pos - calosc + koniec_str.size(); if (pol < 0 || pol >= koniec_str.size()) throw "Dupa"; return koniec_str[pos - calosc + koniec_str.size()] - '0'; } } inline int cyfry() const { return cyfry_dopisku + poczatek_str.size(); } void print() { for (int i = 0; i < cyfry(); i++) { printf("%d", wartosc(i)); } printf("\n"); } }; LL zera[160]; int main2() { scanf("%d", &n); for (int i = 0; i < n; i++) { int tmp, b, c; scanf("%d %d %d", &tmp, &b, &c); Numer(tmp, b, c).print(); } return 0; } int debug = 0; LL brut() { LL res = 0; LL ost = dane[0]; for (int i = 1; i<n; i++) { LL nowa = dane[i]; int k = 0; while (true) { LL b0 = nowa * zera[k]; if (b0 > ost) { ost = b0; res += k; break; } else { LL b9 = nowa * zera[k] + zera[k] - 1; if (b9 > ost) { LL reszta = ost % zera[k]; LL bp = nowa * zera[k] + reszta + 1; ost = bp; res += k; break; } } k++; } if (debug) printf("%lld -- brut\n", ost); } return res; } LL szybki() { LL res = 0; auto ost = Numer(dane[0], 0, 0); for (int i = 1; i<n; i++) { auto nowa = Numer(dane[i], 0, 0); int k = max(0, ost.cyfry() - nowa.cyfry()); while (true) { auto b0 = Numer(nowa.poczatek, 0, k); if (ost < b0) { ost = b0; res += k; break; } else { auto b9 = Numer(nowa.poczatek, zera[min(k, 18)] - 1, k); //LL b9 = nowa * zera[k] + zera[k] - 1; if (ost < b9) { LL reszta = 0; for (int x = ost.cyfry() - k; x < ost.cyfry(); x++) { reszta = reszta * 10 + ost.wartosc(x); } //LL reszta = ost % zera[k]; auto bp = Numer(nowa.poczatek, reszta + 1, k); if (bp.cyfry() != ost.cyfry()) throw "dupkaaa"; //LL bp = nowa * zera[k] + reszta + 1; ost = bp; res += k; break; } } k++; } if (debug) { for (int i2 = 0; i2 < ost.cyfry(); i2++) printf("%d", ost.wartosc(i2)); printf("\n"); } //printf("%s - \n", (ost.poczatek_str + string(ost.puste_zera, '0') + (ost.cyfry_dopisku > 0 ? ost.koniec_str : "")).c_str()); } return res; } void porownaj() { for (int k = 0; k < 100000; k++) { dane.clear(); for (int i = 0; i < n; i++) { dane.PB(1 + rand() % 10000); //int tmp; scanf("%d", &tmp); dane.PB(tmp); } LL res = szybki(); LL inny = brut(); if (res != inny) { printf("%lld == %lld\n", res, inny); for (int i = 0; i < n; i++) printf("%d,", dane[i]); printf("\n"); debug = 1; res = szybki(); inny = brut(); } } } int main() { zera[0] = 1; for (int i = 1; i < 19; i++) zera[i] = zera[i-1] * 10; scanf("%d", &n); //porownaj(); //return 0; for (int i = 0; i < n; i++) { int tmp; scanf("%d", &tmp); dane.PB(tmp); } //debug = 1; LL res = szybki(); //LL inny = brut(); printf("%lld\n", res); /*if (res != inny) { printf("%lld == %lld\n", res, inny); for (int i = 0; i < n; i++) printf("%d,", dane[i]); printf("\n"); debug = 1; res = szybki(); inny = brut(); return -1; }*/ 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 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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <cstdlib> #include <vector> #include <algorithm> #include <cstring> #include <string> #include <map> #include <deque> using namespace std; typedef long long LL; typedef pair<int, int> PI; typedef vector<int> VI; #define ALL(a) (a).begin(),(a).end() #define PB push_back #define MP make_pair #define FT first #define SD second #define Y first #define X second vector<string>token(string a) { vector<string>w; a.push_back(' '); while (!a.empty()) { w.push_back(a.substr(0, a.find(" "))); a = a.substr(a.find(" ") + 1, a.size() - 1); }return w; } map<string, int> mapik; vector<string> amapik; int dodaj(string a) { if (mapik.count(a) == 0) { mapik[a] = mapik.size() - 1; amapik.PB(a); }return mapik[a]; } const int INF = 1000000000; const LL INFINF = 1000000000000000000LL; PI moves4[4] = { MP(1, 0), MP(-1, 0), MP(0, 1), MP(0, -1) }; PI move(PI st, PI m) { return MP(st.first + m.first, st.second + m.second); } int rows, cols; bool on_board(PI p) { return p.first >= 0 && p.second >= 0 && p.first < rows && p.second < cols; } char tmp_str[1000000]; string scanf_string() { scanf("%s", tmp_str); return tmp_str; } inline bool get_bit(int w, int i) { return (w >> i) & 1; } // ========================================================== int n; VI dane; class Numer { public: LL poczatek; LL dopisek; LL cyfry_dopisku; string poczatek_str; string koniec_str; int puste_zera; int start_dopisku_pustego; int start_dopisku_wlasciwego; Numer(LL a, LL dopisek_wartosc, LL c) : poczatek(a), dopisek(dopisek_wartosc), cyfry_dopisku(c) { poczatek_str = to_string(poczatek); koniec_str = to_string(dopisek); start_dopisku_pustego = poczatek_str.size(); start_dopisku_wlasciwego = start_dopisku_pustego + cyfry_dopisku - koniec_str.size(); puste_zera = max(start_dopisku_wlasciwego - start_dopisku_pustego, 0); if (cyfry_dopisku > 0 && koniec_str.size() > cyfry_dopisku) { printf("%d %s", cyfry_dopisku, koniec_str.c_str()); fflush(stdout); throw "Division by zero condition!"; } } int operator<(const Numer &b) const { if (this->cyfry() == b.cyfry()) { /*for (int i = 0; i <(this->cyfry()); i++) { if (this->wartosc(i) != b.wartosc(i)) return this->wartosc(i) < b.wartosc(i); }*/ for (int i = 0; i < max(poczatek_str.size(), b.poczatek_str.size()); i++) { if (this->wartosc(i) != b.wartosc(i)) return this->wartosc(i) < b.wartosc(i); } for (int i = min(start_dopisku_wlasciwego, b.start_dopisku_wlasciwego); i < this->cyfry(); i++) { if (this->wartosc(i) != b.wartosc(i)) return this->wartosc(i) < b.wartosc(i); } return 0; } return this->cyfry() < b.cyfry(); } int wartosc(int pos) const { auto calosc = this->cyfry(); if (pos < poczatek_str.size()) return poczatek_str[pos] - '0'; if (pos < calosc - koniec_str.size()) return 0; else { int pol = pos - calosc + koniec_str.size(); if (pol < 0 || pol >= koniec_str.size()) throw "Dupa"; return koniec_str[pos - calosc + koniec_str.size()] - '0'; } } inline int cyfry() const { return cyfry_dopisku + poczatek_str.size(); } void print() { for (int i = 0; i < cyfry(); i++) { printf("%d", wartosc(i)); } printf("\n"); } }; LL zera[160]; int main2() { scanf("%d", &n); for (int i = 0; i < n; i++) { int tmp, b, c; scanf("%d %d %d", &tmp, &b, &c); Numer(tmp, b, c).print(); } return 0; } int debug = 0; LL brut() { LL res = 0; LL ost = dane[0]; for (int i = 1; i<n; i++) { LL nowa = dane[i]; int k = 0; while (true) { LL b0 = nowa * zera[k]; if (b0 > ost) { ost = b0; res += k; break; } else { LL b9 = nowa * zera[k] + zera[k] - 1; if (b9 > ost) { LL reszta = ost % zera[k]; LL bp = nowa * zera[k] + reszta + 1; ost = bp; res += k; break; } } k++; } if (debug) printf("%lld -- brut\n", ost); } return res; } LL szybki() { LL res = 0; auto ost = Numer(dane[0], 0, 0); for (int i = 1; i<n; i++) { auto nowa = Numer(dane[i], 0, 0); int k = max(0, ost.cyfry() - nowa.cyfry()); while (true) { auto b0 = Numer(nowa.poczatek, 0, k); if (ost < b0) { ost = b0; res += k; break; } else { auto b9 = Numer(nowa.poczatek, zera[min(k, 18)] - 1, k); //LL b9 = nowa * zera[k] + zera[k] - 1; if (ost < b9) { LL reszta = 0; for (int x = ost.cyfry() - k; x < ost.cyfry(); x++) { reszta = reszta * 10 + ost.wartosc(x); } //LL reszta = ost % zera[k]; auto bp = Numer(nowa.poczatek, reszta + 1, k); if (bp.cyfry() != ost.cyfry()) throw "dupkaaa"; //LL bp = nowa * zera[k] + reszta + 1; ost = bp; res += k; break; } } k++; } if (debug) { for (int i2 = 0; i2 < ost.cyfry(); i2++) printf("%d", ost.wartosc(i2)); printf("\n"); } //printf("%s - \n", (ost.poczatek_str + string(ost.puste_zera, '0') + (ost.cyfry_dopisku > 0 ? ost.koniec_str : "")).c_str()); } return res; } void porownaj() { for (int k = 0; k < 100000; k++) { dane.clear(); for (int i = 0; i < n; i++) { dane.PB(1 + rand() % 10000); //int tmp; scanf("%d", &tmp); dane.PB(tmp); } LL res = szybki(); LL inny = brut(); if (res != inny) { printf("%lld == %lld\n", res, inny); for (int i = 0; i < n; i++) printf("%d,", dane[i]); printf("\n"); debug = 1; res = szybki(); inny = brut(); } } } int main() { zera[0] = 1; for (int i = 1; i < 19; i++) zera[i] = zera[i-1] * 10; scanf("%d", &n); //porownaj(); //return 0; for (int i = 0; i < n; i++) { int tmp; scanf("%d", &tmp); dane.PB(tmp); } //debug = 1; LL res = szybki(); //LL inny = brut(); printf("%lld\n", res); /*if (res != inny) { printf("%lld == %lld\n", res, inny); for (int i = 0; i < n; i++) printf("%d,", dane[i]); printf("\n"); debug = 1; res = szybki(); inny = brut(); return -1; }*/ return 0; } |