given a number x, we have to reach from 1 to x on number line and at each position i we can move to i+1 or to reverse of number i(ignoring the leading zeroes, say from 23 to 32). Find the minimum number of steps to reach x. x<=1e14
# | User | Rating |
---|---|---|
1 | jiangly | 4039 |
2 | tourist | 3841 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3590 |
5 | ecnerwala | 3542 |
6 | Benq | 3535 |
7 | orzdevinwang | 3526 |
8 | gamegame | 3477 |
9 | heuristica | 3357 |
10 | Radewoosh | 3355 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 165 |
3 | atcoder_official | 160 |
3 | Um_nik | 160 |
5 | djm03178 | 158 |
6 | Dominater069 | 156 |
7 | adamant | 153 |
8 | luogu_official | 151 |
8 | awoo | 151 |
10 | TheScrasse | 147 |
given a number x, we have to reach from 1 to x on number line and at each position i we can move to i+1 or to reverse of number i(ignoring the leading zeroes, say from 23 to 32). Find the minimum number of steps to reach x. x<=1e14
Name |
---|
P.S. — How do I did spoiler tags in my comment ?
See the screenshot below:
Thanks
let's start at x and move to 1 ,the best strategy will be always to move x%10 moves while you are greater than 10 then reverse ,as if you are dividing by 10 in x%10 moves but reversing the digits each time. let x=987, then you move 7 moves then reverse,now x=89 then move 9 moves then reverse , x=8 since you are smaller than 10 the best strategy is to move normally to 1 so the answer will be the sum of digits of x — 1 ,the minus 1 because we start from 1 not 0
This is incorrect, because you can move from $$$980$$$ to $$$89$$$, but questions asks you to start from $$$1$$$ and go to $$$x$$$. You won't be able to move from $$$89$$$ to $$$980$$$, so this path is not reversible.