514 Freedom Trail

In the video game Fallout 4, the quest "Road to Freedom" requires players to reach a metal dial called the "Freedom Trail Ring", and use the dial to spell a specific keyword in order to open the door.

Given a string ring, which represents the code engraved on the outer ring and another string key, which represents the keyword needs to be spelled. You need to find the minimum number of steps in order to spell all the characters in the keyword.

Initially, the first character of the ring is aligned at 12:00 direction. You need to spell all the characters in the string key one by one by rotating the ring clockwise or anticlockwise to make each character of the string key aligned at 12:00 direction and then by pressing the center button.

At the stage of rotating the ring to spell the key character key[i]:

  1. You can rotate the ring clockwise or anticlockwise one place, which counts as 1 step. The final purpose of the rotation is to align one of the string ring's characters at the 12:00 direction, where this character must equal to the character key[i].

  2. If the character key[i] has been aligned at the 12:00 direction, you need to press the center button to spell, which also counts as 1 step. After the pressing, you could begin to spell the next character in the key (next stage), otherwise, you've finished all the spelling.

Input:
 ring = "godding", key = "gd"

Output:
 4

Explanation:
 For the first key character 'g', since it is already in place, we just need 1 step to spell this character. 
 For the second key character 'd', we need to rotate the ring "godding" anticlockwise by two steps to make it become "ddinggo".
 Also, we need 1 more step for spelling.
 So the final output is 4.

Note:

  1. Length of both ring and key will be in range 1 to 100.

  2. There are only lowercase letters in both strings and might be some duplcate characters in both strings.

  3. It's guaranteed that string key could always be spelled by rotating the string ring.

Why a Greedy Approach will not work:

A Greedy approach would accept the first target character it comes across through breadth first search (iterating both left and right through the rotating ring). As a counter example, consider the case when the ring = nyngl and key = yyynnnnnnlllggg. When only a single character exists, the answer is clear that we must rotated to the character.

 *        // current
nyngl

   *
yyynnn... // target

However, when there is more than one option to take, there can exist a more efficient path that invests in anticipated characters which come later.

# invalid greedy approach
class Solution(object):
    def __sortedCharLocationMap(self, word):
        """
        :param word: [string] target key mapping
        :param indices: List [int] target value mapping
        :return: dictionary [char]:[List[int]]
        """

        list_map = collections.defaultdict(list)
        for i, char in enumerate(word):
            list_map[char].append(i)
        for key, location in list_map.items():
            list_map[key] = sorted(location)
        return list_map


    def __findMinRotatedDist(self, word, starting_i, target_char):
        """
        :param word: [string] word to search
        :param starting_i: [int] starting position of search
        :param target_i: [char] target char to find
        :return: [int, int] found iter, and distance searched
        """
        traveled = 0
        iter_l = starting_i
        iter_r = starting_i
        while True:
            if word[iter_r % len(word)] == target_char:
                return [iter_r % len(word), traveled]
            elif word[iter_l % len(word)] == target_char:
                return [iter_l % len(word), abs(traveled)]
            iter_l -= 1
            iter_r += 1
            traveled += 1


    def findRotateSteps(self, ring, key):
        """
        :param ring: [string] word around circle
        :param key: [int] index to start search
        :return: [int] min distance to key in
        """

        dist = 0
        prev_i = 0
        for char in key:
            [find_i, traveled] = self.__findMinRotatedDist(ring, prev_i, char)
            dist += traveled + 1
            prev_i = find_i
        return dist

Last updated