I really want to know how to solve this problem :
You are given two positive integers d and s. Find minimal positive integer n which is divisible by d and has sum of digits equal to s.
# | 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 | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
I really want to know how to solve this problem :
You are given two positive integers d and s. Find minimal positive integer n which is divisible by d and has sum of digits equal to s.
Name |
---|
The constraints are really important here, they are relatively small and may encourage some exploration techniques.
You can brute force every possible digit. Of course, this will lead to TLE unless you do some prunning.
Is it useful to insert a digit if it leads to the same sum and same value (mod d)?
You can solve it with BFS. Every node (or state) has two values, (number mod d, sum of digits)
Neighboring nodes are those possible values that can be obtained after inserting a digit to the right.
The target node is $$$(0, s)$$$. If this node is reachable, reconstruct the path and print answer. Otherwise, there is no number that satisfies both requirements.
I'd like to add an observation to the hint you gave:
"Is it useful to insert a digit if it leads to the same sum and same value (mod d)?" This can only happen is '0' is chosen. However, choosing '0' may not immediately lead to the same sum and same value (mod d), but it will eventually enter a cycle.
Therefore, the more general observation is that choosing '0' will always lead to a cycle, thus a straightforward dynamic programming solution won't work.