Problem Description
You are given an integer n and an array sick sorted in increasing order, representing positions of infected people in a line of n people. At each step, one uninfected person adjacent to an infected person gets infected. This process continues until everyone is infected. An infection sequence is the order in which uninfected people become infected, excluding those initially infected. Return the number of different infection sequences possible, modulo 10^9+7.
Key Insights
- The infection spreads from infected individuals to adjacent uninfected individuals.
- The sequence of infection is constrained by the positions of the initially infected individuals.
- The number of valid infection sequences can be determined using combinatorial mathematics, specifically by considering gaps between infected individuals and the positions of uninfected individuals.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we will follow these steps:
- Identify the gaps between the infected individuals.
- For each gap, calculate the number of uninfected individuals that can be infected.
- Use combinatorial counting (factorial and combinations) to determine the number of valid sequences.
- Multiply the counts from each gap to get the total number of infection sequences.
- Return the result modulo 10^9 + 7.
We will use arrays to store factorials and their inverses to efficiently calculate combinations.