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 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
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.