题目
Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...
) which sum to n.
Example 1:
1 | Input: n = 12 |
Example 2:
1 | Input: n = 13 |
思路
Lagrange 四平方和定理: 任何一个正整数都可以表示成不超过四个整数的平方之和。
因此此问题结果只有1,2,3,4这四种可能。
推论:
满足四数平方和定理的数n(这里要满足由四个数构成,小于四个不行),必定满足 n=4^a (8b+7).
首先将n迅速缩小。然后再判断这个缩小后的数是否可以通过两个平方数的和或一个平方数组成,不能的话我们返回3,能的话我们返回平方数的个数。
代码
1 | class Solution(object): |