Perfect Squares - Amazon Top Interview Questions


Problem Statement :


Write a program that determines the smallest number of square numbers that sum up to n.

Constraints

1 ≤ n ≤ 100,000

Example 1

Input
n = 4

Output
1

Explanation
4 is already the square of 2.

Example 2

Input
n = 17

Output
2

Explanation
16 + 1

Example 3

Input
n = 18

Output
2

Explanation
9 + 9



Solution :



title-img




                        Solution in C++ :

int solve(int n) {
    int m = 1;
    while (n % 2 == 0) {
        if (n % 4 == 0) {
            n /= 4;
        } else {
            n /= 2;
            m *= 2;
        }
    }
    // now n is odd.
    bool check_4p3 = false;

    // prime factorize with O(sqrt(n))
    // you can reduce time by any other prime factorize method.
    for (int i = 3; i <= n / i; i += 2) {
        if (n % i == 0) {
            int state = 0;
            while (n % i == 0) {
                n /= i;
                state ^= 1;
            }
            if (state) {
                m *= i;
                if (i % 4 == 3) {
                    check_4p3 = true;
                }
            }
        }
    }
    if (n > 1) {
        m *= n;
        if (n % 4 == 3) check_4p3 = true;
    }
    // now original n = m * (some square number)
    // case 1 : n is already square number.
    if (m == 1) return 1;
    // case 2 : there is no prime factor s.t. p%4 == 3
    if (!check_4p3) return 2;
    // case 3 : m % 8 is not 7. I don't know why!
    if (m % 8 != 7) return 3;
    // case 4 : else. by lagrange four square theorem
    return 4;
}
                    


                        Solution in Java :

import java.lang.Math;

class Solution {
    public int solve(int n) {
        if (isSquare(n)) {
            return 1;
        }
        for (int i = (int) Math.floor(Math.sqrt(n)); (int) Math.pow(i, 2) >= n / 2; i--) {
            if (isSquare(n - (int) Math.pow(i, 2))) {
                return 2;
            }
        }
        // Legendre's three-square theorem
        return isLegendres(n) ? 4 : 3;
    }

    private boolean isSquare(int n) {
        double root = Math.sqrt(n);
        return root == Math.floor(root);
    }
    private boolean isLegendres(int n) {
        for (int a = 1; a <= n - 7; a *= 4) {
            if (n % a == 0 && (((n / a) - 7) % 8 == 0)) {
                return true;
            }
        }
        return false;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, n):
        squares = []
        for i in range(1, int(n ** 0.5) + 1):
            squares.append(i ** 2)

        squares = squares[::-1]  # start from the largest one would reduce the time
        q = deque([0])  # cur value
        visited = set()
        step = 0
        while q:
            for _ in range(len(q)):
                node = q.popleft()
                if node == n:
                    return step

                if node > n:
                    continue

                if node in visited:
                    continue
                visited.add(node)

                for s in squares:
                    q.append(node + s)

            step += 1
                    


View More Similar Problems

Tree: Postorder Traversal

Complete the postorder function in the editor below. It received 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's postorder traversal as a single line of space-separated values. Input Format Our test code passes the root node of a binary tree to the postorder function. Constraints 1 <= Nodes in the tree <= 500 Output Format Print the

View Solution →

Tree: Inorder Traversal

In this challenge, you are required to implement inorder traversal of a tree. Complete the inorder function in your editor below, which has 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's inorder traversal as a single line of space-separated values. Input Format Our hidden tester code passes the root node of a binary tree to your $inOrder* func

View Solution →

Tree: Height of a Binary Tree

The height of a binary tree is the number of edges between the tree's root and its furthest leaf. For example, the following binary tree is of height : image Function Description Complete the getHeight or height function in the editor. It must return the height of a binary tree as an integer. getHeight or height has the following parameter(s): root: a reference to the root of a binary

View Solution →

Tree : Top View

Given a pointer to the root of a binary tree, print the top view of the binary tree. The tree as seen from the top the nodes, is called the top view of the tree. For example : 1 \ 2 \ 5 / \ 3 6 \ 4 Top View : 1 -> 2 -> 5 -> 6 Complete the function topView and print the resulting values on a single line separated by space.

View Solution →

Tree: Level Order Traversal

Given a pointer to the root of a binary tree, you need to print the level order traversal of this tree. In level-order traversal, nodes are visited level by level from left to right. Complete the function levelOrder and print the values in a single line separated by a space. For example: 1 \ 2 \ 5 / \ 3 6 \ 4 F

View Solution →

Binary Search Tree : Insertion

You are given a pointer to the root of a binary search tree and values to be inserted into the tree. Insert the values into their appropriate position in the binary search tree and return the root of the updated binary tree. You just have to complete the function. Input Format You are given a function, Node * insert (Node * root ,int data) { } Constraints No. of nodes in the tree <

View Solution →