Race to Finish Line - Google Top Interview Questions


Problem Statement :


You are driving a car in a one-dimensional line and are currently at position = 0 with speed = 1. You can make one of two moves:

Accelerate: position += speed and speed *= 2

Reverse: speed = -1 if speed > 0 otherwise speed = 1.

Return the minimum number of moves it would take to reach target.

Constraints

1 ≤ target ≤ 100,000

Example 1

Input

target = 7

Output

3

Explanation


We can accelerate 3 times to reach 7. 0 -> 1 -> 3 -> 7



Example 2


Input

target = 6

Output

5

Explanation

We can accelerate 3 times to reach 7. 0 -> 1 -> 3 -> 7. Then we reverse to change our speed to -1. Then we accelerate to reach 6.



Solution :



title-img




                        Solution in C++ :

int dp[100005];
// dp[i] is the minimum time needed to travel exactly a distance of i

int solve(int target) {
    if (dp[target]) {
        return dp[target];
    }
    int time = 0;
    int speed = 1;
    int position = 0;
    // this is achievable by accelerating, then reversing twice, repeating "target" times until we
    // get to the target
    int besttime = 3 * target;
    while (true) {
        position += speed;
        time++;
        if (position == target) {
            besttime = min(besttime, time);
            break;
        }
        // reverse once, but since we're after the target we don't continue traveling further
        // forward
        if (position > target) {
            besttime = min(besttime, time + 1 + solve(position - target));
            break;
        }
        // reverse twice to reset speed to 1
        besttime = min(besttime, time + 2 + solve(target - position));
        // reverse in the middle, but don't reverse all the way
        if (speed > 1) {
            int candtime = time + 2;
            int candposition = target - position;
            for (int revspeed = 1; candposition + revspeed < target; revspeed *= 2) {
                candposition += revspeed;
                candtime++;
                besttime = min(besttime, candtime + solve(candposition));
            }
        }
        speed *= 2;
    }
    dp[target] = besttime;
    return besttime;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int target) {
        if (target == 0)
            return 0;
        boolean[][] ff = new boolean[38][target * 2 + 1];
        LinkedList<Integer> ll1 = new LinkedList(), ll2 = new LinkedList();
        ll1.add(0);
        ll2.add(0);
        ff[0][0] = true;
        int lay = 0, count = 1;
        while (!ll1.isEmpty()) {
            int p = ll1.poll(), s = ll2.poll();
            int speed = s < 19 ? 1 << s : -(1 << (s - 19));
            if (p + speed == target)
                return lay + 1;
            if (p + speed >= 0 && p + speed < ff[0].length && !ff[s + 1][p + speed]) {
                ll1.add(p + speed);
                ll2.add(s + 1);
                ff[s + 1][p + speed] = true;
            }
            s = s < 19 ? 19 : 0;
            if (!ff[s][p]) {
                ll1.add(p);
                ll2.add(s);
                ff[s][p] = true;
            }
            --count;
            if (count == 0) {
                ++lay;
                count = ll1.size();
            }
        }
        return -1;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, target):
        self.ans = int(1e9)
        hi = 1
        while (1 << hi) < target:
            hi += 1
        self.dfs(hi, 0, 0, 0, target)
        return self.ans

    def dfs(self, digit, cost, pos, neg, target):
        tot = cost + max(2 * (pos - 1), 2 * neg - 1)
        if tot >= self.ans:
            return
        if target == 0:
            self.ans = min(self.ans, tot)
            return
        step = (1 << digit) - 1
        if step * 2 < abs(target):
            return
        self.dfs(digit - 1, cost, pos, neg, target)
        self.dfs(digit - 1, cost + digit, pos + 1, neg, target - step)
        self.dfs(digit - 1, cost + digit * 2, pos + 2, neg, target - step * 2)
        self.dfs(digit - 1, cost + digit, pos, neg + 1, target + step)
        self.dfs(digit - 1, cost + digit * 2, pos, neg + 2, target + step * 2)
                    


View More Similar Problems

Tree: Inorder Traversal

In this challenge, you are required to implement inorder traversal of a tree. Complete the inorder function in your editor below, which has 1 parameter: a pointer to the root of a binary tree. It must print the values in the tree's inorder traversal as a single line of space-separated values. Input Format Our hidden tester code passes the root node of a binary tree to your $inOrder* func

View Solution →

Tree: Height of a Binary Tree

The height of a binary tree is the number of edges between the tree's root and its furthest leaf. For example, the following binary tree is of height : image Function Description Complete the getHeight or height function in the editor. It must return the height of a binary tree as an integer. getHeight or height has the following parameter(s): root: a reference to the root of a binary

View Solution →

Tree : Top View

Given a pointer to the root of a binary tree, print the top view of the binary tree. The tree as seen from the top the nodes, is called the top view of the tree. For example : 1 \ 2 \ 5 / \ 3 6 \ 4 Top View : 1 -> 2 -> 5 -> 6 Complete the function topView and print the resulting values on a single line separated by space.

View Solution →

Tree: Level Order Traversal

Given a pointer to the root of a binary tree, you need to print the level order traversal of this tree. In level-order traversal, nodes are visited level by level from left to right. Complete the function levelOrder and print the values in a single line separated by a space. For example: 1 \ 2 \ 5 / \ 3 6 \ 4 F

View Solution →

Binary Search Tree : Insertion

You are given a pointer to the root of a binary search tree and values to be inserted into the tree. Insert the values into their appropriate position in the binary search tree and return the root of the updated binary tree. You just have to complete the function. Input Format You are given a function, Node * insert (Node * root ,int data) { } Constraints No. of nodes in the tree <

View Solution →

Tree: Huffman Decoding

Huffman coding assigns variable length codewords to fixed length input characters based on their frequencies. More frequent characters are assigned shorter codewords and less frequent characters are assigned longer codewords. All edges along the path to a character contain a code digit. If they are on the left side of the tree, they will be a 0 (zero). If on the right, they'll be a 1 (one). Only t

View Solution →