Kth Smallest Instructions

 

1643. Kth Smallest Instructions Bob is standing at cell (0, 0), and he wants to reach destination: (row, column). He can only travel right and down. You are going to help Bob by providing instructions for him to reach destination.

The instructions are represented as a string, where each character is either:

‘H’, meaning move horizontally (go right), or ‘V’, meaning move vertically (go down). Multiple instructions will lead Bob to destination. For example, if destination is (2, 3), both “HHHVV” and “HVHVH” are valid instructions.

However, Bob is very picky. Bob has a lucky number k, and he wants the kth lexicographically smallest instructions that will lead him to destination. k is 1-indexed.

Given an integer array destination and an integer k, return the kth lexicographically smallest instructions that will take Bob to destination.

Solution

Reference

  1. If we choose to walk down a row when we have N more steps and R possible rows left to walk down (including the current step), then we’re cutting out the number of combinations of (N - 1) steps with R rows to walk down, because all of those combinations would result in a lexicographically smaller instruction set.
def kthSmallestPath(self, destination: List[int], k: int) -> str:
    from math import comb
    r, c = destination
    
    ret = []
    remDown = r
    for i in range(r + c):
        remSteps = r + c - (i + 1)
        com = comb(remSteps, remDown)
        if com >= k:
            ret.append("H")
        else:
            remDown -= 1
            k -= com
            ret.append("V")
            
    return ''.join(ret)