Problem Description
You are given an integer array rolls of length n and an integer k. You roll a k sided dice numbered from 1 to k, n times, where the result of the ith roll is rolls[i]. Return the length of the shortest sequence of rolls so that there's no such subsequence in rolls. A sequence of rolls of length len is the result of rolling a k sided dice len times.
Key Insights
- A sequence can be formed from rolls if it can be constructed using the numbers present in the rolls array.
- The shortest impossible sequence can be found by exploring the combinations of numbers that can be formed.
- We need to determine the first sequence that cannot be constructed from the given rolls.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(k)
Solution
To solve the problem, we can utilize a greedy approach with the help of a hash table (or a set) to track the occurrences of each number in the rolls. The goal is to identify the smallest length of a sequence (starting from length 1) that cannot be formed using the numbers available in rolls. We'll iterate through possible lengths of sequences and check if each sequence of that length can be formed using the available numbers.