#include <iostream> #include <string> #include <sstream> using namespace std; int last_not_nine(const string& s) { int pos = s.length()-1; while ((pos > -1) and (s[pos] == '9')) { --pos; } return pos; } int main() { int count; cin >> count; string actual; cin >> actual; int pos = last_not_nine(actual); long long counter = 0; for (unsigned i = 1; i < count; ++i) { string next; cin >> next; int length = next.length(); if (length <= actual.length()) { int comp = next.compare(actual.substr(0, length)); if (comp < 0) { next = next + string(actual.length() - length + 1, '0'); pos = next.length() - 1; } else if (comp > 0) { if (actual.length() > length) { next = next + string(actual.length() - length, '0'); pos = next.length() - 1; } else { pos = last_not_nine(next); } } else { if (pos >= length) { next = next + actual.substr(length, pos - length + 1); next[pos] = (actual[pos] + 1); if (actual.length() > next.length()) { next = next + string(actual.length() - next.length(), '0'); pos = next.length() - 1; } else { pos = last_not_nine(next); } } else { next = next + string(actual.length() - length + 1, '0'); pos = next.length() - 1; } } } else { pos = last_not_nine(next); } actual = next; counter += next.length() - length; } cout << counter; 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 | #include <iostream> #include <string> #include <sstream> using namespace std; int last_not_nine(const string& s) { int pos = s.length()-1; while ((pos > -1) and (s[pos] == '9')) { --pos; } return pos; } int main() { int count; cin >> count; string actual; cin >> actual; int pos = last_not_nine(actual); long long counter = 0; for (unsigned i = 1; i < count; ++i) { string next; cin >> next; int length = next.length(); if (length <= actual.length()) { int comp = next.compare(actual.substr(0, length)); if (comp < 0) { next = next + string(actual.length() - length + 1, '0'); pos = next.length() - 1; } else if (comp > 0) { if (actual.length() > length) { next = next + string(actual.length() - length, '0'); pos = next.length() - 1; } else { pos = last_not_nine(next); } } else { if (pos >= length) { next = next + actual.substr(length, pos - length + 1); next[pos] = (actual[pos] + 1); if (actual.length() > next.length()) { next = next + string(actual.length() - next.length(), '0'); pos = next.length() - 1; } else { pos = last_not_nine(next); } } else { next = next + string(actual.length() - length + 1, '0'); pos = next.length() - 1; } } } else { pos = last_not_nine(next); } actual = next; counter += next.length() - length; } cout << counter; return 0; } |