This is a follow up to my previous question (about an old top coder riddle).
Given a string of digits, find the minimum number of additions required for the string to equal some target number. Each addition is the equivalent of inserting a plus sign somewhere into the string of digits. After all plus signs are inserted, evaluate the sum as usual.
For example, consider "303" and a target sum of 6. The best strategy is "3+03".
I guess (not proved it though) the problem is NP-complete. What do you think? How would you reduce a well-known NP-complete problem to this problem?