Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 1.02 KB

6-sums-of-perfect-squares.md

File metadata and controls

16 lines (14 loc) · 1.02 KB

Problem:

The task is simply stated. Given an integer n (3 < n < 109), find the length of the smallest list of perfect squares which add up to n. Come up with the best algorithm you can; you'll need it!

Examples:

  • sum_of_squares(17) = 2
    17 = 16 + 1 (4 and 1 are perfect squares).
  • sum_of_squares(15) = 4
    15 = 9 + 4 + 1 + 1. There is no way to represent 15 as the sum of three perfect squares.
  • sum_of_squares(16) = 1
    16 itself is a perfect square.

Time constraints:

5 easy (sample) test cases: n < 20

5 harder test cases: 1000 < n < 15000

5 maximally hard test cases: 5 * 1e8 < n < 1e9

15 random maximally hard test cases: 1e8 < n < 1e9

Solution