Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Day156 #326

Merged
merged 4 commits into from
Jan 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,4 @@ problems from
* [Day 153](https://github.com/vaskoz/dailycodingproblem-go/issues/316)
* [Day 154](https://github.com/vaskoz/dailycodingproblem-go/issues/320)
* [Day 155](https://github.com/vaskoz/dailycodingproblem-go/issues/322)
* [Day 156](https://github.com/vaskoz/dailycodingproblem-go/issues/325)
44 changes: 44 additions & 0 deletions day156/problem.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
package day156

import (
"math"
)

// MinSquared returns the smallest number
// of squared integers which sum to n.
// Runs in exponential time.
func MinSquared(n int) int {
return minSquared(n, 0, n)
}

func minSquared(n, level, minSoFar int) int {
if n <= 3 {
return n
}
end := int(math.Sqrt(float64(n))) + 1
for i := end; i > 0; i-- {
if x := i * i; x <= n {
if y := 1 + minSquared(n-x, level+1, minSoFar); y < minSoFar {
minSoFar = y
}
}
}
return minSoFar
}

// MinSquaredDP returns the smallest number
// of squared integers which sum to n.
// Runs in O(N^2) time and O(N) space.
func MinSquaredDP(n int) int {
table := make([]int, 0, n+1)
table = append(table, 0, 1, 2, 3)
for i := 4; i <= n+1; i++ {
table = append(table, i)
for x := 1; x < i+1; x++ {
if v := x * x; v <= i && table[i-v]+1 < table[i] {
table[i] = table[i-v] + 1
}
}
}
return table[n]
}
44 changes: 44 additions & 0 deletions day156/problem_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
package day156

import "testing"

var testcases = []struct {
n, expected int
}{
{13, 2},
{27, 3},
}

func TestMinSquared(t *testing.T) {
t.Parallel()
for _, tc := range testcases {
if result := MinSquared(tc.n); result != tc.expected {
t.Errorf("For N=%d Expected %v got %v", tc.n, tc.expected, result)
}
}
}

func BenchmarkMinSquared(b *testing.B) {
for i := 0; i < b.N; i++ {
for _, tc := range testcases {
MinSquared(tc.n)
}
}
}

func TestMinSquaredDP(t *testing.T) {
t.Parallel()
for _, tc := range testcases {
if result := MinSquaredDP(tc.n); result != tc.expected {
t.Errorf("For N=%d Expected %v got %v", tc.n, tc.expected, result)
}
}
}

func BenchmarkMinSquaredDP(b *testing.B) {
for i := 0; i < b.N; i++ {
for _, tc := range testcases {
MinSquaredDP(tc.n)
}
}
}