Post

650 2 Keys Keyboard

650 2 Keys Keyboard

2 Keys Keyboard image

There is only one character ‘A’ on the screen of a notepad. You can perform one of two operations on this notepad for each step:

1
2
Copy All: You can copy all the characters present on the screen (a partial copy is not allowed).
Paste: You can paste the characters which are copied last time.

Given an integer n, return the minimum number of operations to get the character ‘A’ exactly n times on the screen.

 

Example 1:

1
2
3
4
5
6
7
8
**Input:** n = 3
**Output:** 3
**Explanation:** Initially, we have one character 'A'.
In step 1, we use Copy All operation.
In step 2, we use Paste operation to get 'AA'.
In step 3, we use Paste operation to get 'AAA'.

Example 2:

1
2
3
4
**Input:** n = 1
**Output:** 0

 

Constraints:

1
1 <= n <= 1000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

class Solution:
    def __init__(self):
        self.cache = {}
    def minSteps(self, n: int, lastchar : str = "", screen = "A") -> int:
        if (lastchar, screen) in self.cache:
            return self.cache[(lastchar, screen)]
        if n == len(screen) :
            return 0
        if n < len(screen):
            return 1000000
        if lastchar == "":
            if n == 1:
                return 0
            v = 2 + self.minSteps(n, "A", screen +  "A")
            self.cache[(lastchar, screen)] = v
            return v
        else:
            v =  min(1 + self.minSteps(n, lastchar, screen +  lastchar), 
                2 + self.minSteps(n, screen, screen +  screen))
            self.cache[(lastchar, screen)] = v
            return v
        



This post is licensed under CC BY 4.0 by the author.