CSES - Putka Open 2020 – 3/5 - Results
Submission details
Task:Numerot
Sender:Lieska
Submission time:2020-10-18 18:18:08 +0300
Language:C++17
Status:COMPILE ERROR

Compiler report

input/code.cpp: In function 'll f(ll)':
input/code.cpp:11:25: error: call of overloaded 'to_string(ll&)' is ambiguous
     string s=to_string(a);
                         ^
In file included from /usr/include/c++/7/string:52:0,
                 from /usr/include/c++/7/bits/locale_classes.h:40,
                 from /usr/include/c++/7/bits/ios_base.h:41,
                 from /usr/include/c++/7/ios:42,
                 from /usr/include/c++/7/istream:38,
                 from /usr/include/c++/7/sstream:38,
                 from /usr/include/c++/7/complex:45,
                 from /usr/include/c++/7/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:52,
                 from input/code.cpp:1:
/usr/include/c++/7/bits/basic_string.h:6414:3: note: candidate: std::__cxx11::string std::__cxx11::to_string(int)
   to_string(int __val)
   ^~~~~~~~~
/usr/include/c++/7/bits/basic_string.h:6419:3: note: candidate: std::__cxx11::string std::__cxx11::to_string(unsign...

Code

#include <bits/stdc++.h>
using namespace std;

typedef __int128_t ll;


ll l[22][10], r[22][10][10], v[22][10][10], vas[111], ky[22], ysi[22];
int x;

ll f(ll a){
    string s=to_string(a);
    int b=0, c=1, d=0;
    for (int i=s.size()-2; i>=0; --i){
        if (s[i]=='9' && c) b++;
        else{
            c=0;
            d=max(d, s[i]-'0');
        }
    }
    x=d;
    return b;
}

ll askeleet(ll a){
    if (a<100){
        return vas[a];
    }
    ll c=a%(100), ans=0;
    if (f(a)>1) x=9;
    while (c>=0){
        int d=c%10, e=(c/10)%10;
        c = c - max(x, max(d, e));
        ans++;
    }
    a = (a/100)*100 + c;
    int viim=a%10;
    while (true){
        ll b=f(a);
        if (x==0) break;
        ans = ans + r[b+1][x][viim];
        a = (a/ky[b+1]-1)*ky[b+1] + ysi[b] + v[b+1][x][viim];
        viim=a%10;
    }
    ll b=f(a);
    ans+=l[b+1][viim];
    return ans;
}


int main(){
    int t;
    cin >> t;
    ky[0]=1;
    ysi[1]=90;
    for (int i=1; i<=20; ++i) ky[i]=ky[i-1]*10;
    for (int i=2; i<=20; ++i) ysi[i] = 9*ky[i]+ysi[i-1];
    for (int i=1; i<=100; ++i){
        int a=0;
        a = max(a, i%10);
        a = max(a, (i/10)%10);
        vas[i]=vas[i-a]+1;
    }
    l[2][1]=l[2][2]=l[2][3]=15;
    for (int i=4; i<=9; ++i) l[2][i]=16;
    for (int k=1; k<=9; ++k){
        for (int j=1; j<=9; ++j){
            int a=90+j;
            int b=0;
            while (a>=0){
                int d=a%10, e=(a/10)%10;
                a = a - max(k, max(d, e));
                b++;
            }
            a+=10;
            r[2][k][j]=b;
            v[2][k][j]=a;
        }
    }
    for (int i=3; i<=20; ++i){
        for (int k=1; k<=9; ++k){
            for (int j=1; j<=9; ++j){
                ll a=0, b=j;
                for (int m=9; m>=0; --m){
                    int c=max(k, m);
                    a+=r[i-1][c][b];
                    b = v[i-1][c][b];
                }
                r[i][k][j]=a;
                v[i][k][j]=b;
            }
        }
    }
    for (int i=3; i<=20; ++i){
        for (int j=1; j<=9; ++j){
            ll a=0, b=j;
            for (int m=9; m>=1; --m){
                a+=r[i-1][m][b];
                b=v[i-1][m][b];
            }
            a+=l[i-1][b];
            l[i][j]=a;
        }
    }
    while (t--){
        ll y;
        long long y1;
        cin >> y1;
        y=y1;
        if (y==1) {
            cout << "1\n";
            continue;
        }
        ll a=1;
        while (askeleet(a*2)<y){
            a*=2;
        }
        ll b=a;
        while (a>=1){
            if (askeleet(b+a)<y) b = b+a;
            a/=2;
        }
        ll b1=(b+1)/100, b2=(b+1)%100;
        if (b1!=0) cout << (long long)b1;
        if (b2<10) cout << "0";
        cout << (long long)b2 << "\n";
    }
}