Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, …) which sum to n.
Example
No.1
Input: n = 12
Output: 3
Explanation: 12 = 4 + 4 + 4.
No.2
Input: n = 13
Output: 2
Explanation: 13 = 4 + 9.
Code
1 | // dp[n] = min{dp[n-i*i] + 1}, n-i*i >= 0, i >= 1 |