g0201_0300.s0279_perfect_squares.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0201_0300.s0279_perfect_squares;
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Dynamic_Programming #Math
// #Breadth_First_Search
public class Solution {
private boolean validSquare(int n) {
int root = (int) Math.sqrt(n);
return root * root == n;
}
public int numSquares(int n) {
if (n < 4) {
return n;
}
if (validSquare(n)) {
return 1;
}
while ((n & 3) == 0) {
n >>= 2;
}
if ((n & 7) == 7) {
return 4;
}
int x = (int) Math.sqrt(n);
for (int i = 1; i <= x; i++) {
if (validSquare(n - i * i)) {
return 2;
}
}
return 3;
}
}