Challenge: Primitive Calculator

Solve the Primitive Calculator Problem.

We'll cover the following...

Problem


Primitive Calculator Problem

Find the minimum number of operations needed to get a positive integer nn from 11 using only three operations: add 11, multiply by 22, and multiply by 33.

Input: An integer nn.

Output: The minimum number of operations “+1+1,” “×2×2,” and “×3×3” needed to get nn from 1.


You are given a calculator that only performs the following three operations with an integer xx: add 11 to xx, multiply xx by 22, or multiply xx by 33. Given a positive integer nn, your goal is to find the minimum number of operations needed to obtain nn starting from the number 11. Before solving the programming challenge below, test your intuition with our Primitive Calculator puzzle.

Primitive Calculator

Let’s try a greedy strategy for solving this problem. If the current number is at most n/3n/3, multiply it by 33. If it is larger than n/3n/3, but at most n/2n/2, multiply it by 22. Otherwise add 11 ...