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

Largest Rectangle

Skyline Real Estate Developers is planning to demolish a number of old, unoccupied buildings and construct a shopping mall in their place. Your task is to find the largest solid area in which the mall can be constructed. There are a number of buildings in a certain two-dimensional landscape. Each building has a height, given by . If you join adjacent buildings, they will form a solid rectangle

View Solution →

Simple Text Editor

In this challenge, you must implement a simple text editor. Initially, your editor contains an empty string, S. You must perform Q operations of the following 4 types: 1. append(W) - Append W string to the end of S. 2 . delete( k ) - Delete the last k characters of S. 3 .print( k ) - Print the kth character of S. 4 . undo( ) - Undo the last (not previously undone) operation of type 1 or 2,

View Solution →

Poisonous Plants

There are a number of plants in a garden. Each of the plants has been treated with some amount of pesticide. After each day, if any plant has more pesticide than the plant on its left, being weaker than the left one, it dies. You are given the initial values of the pesticide in each of the plants. Determine the number of days after which no plant dies, i.e. the time after which there is no plan

View Solution →

AND xor OR

Given an array of distinct elements. Let and be the smallest and the next smallest element in the interval where . . where , are the bitwise operators , and respectively. Your task is to find the maximum possible value of . Input Format First line contains integer N. Second line contains N integers, representing elements of the array A[] . Output Format Print the value

View Solution →

Waiter

You are a waiter at a party. There is a pile of numbered plates. Create an empty answers array. At each iteration, i, remove each plate from the top of the stack in order. Determine if the number on the plate is evenly divisible ith the prime number. If it is, stack it in pile Bi. Otherwise, stack it in stack Ai. Store the values Bi in from top to bottom in answers. In the next iteration, do the

View Solution →

Queue using Two Stacks

A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic que

View Solution →