Problem Description
Implement the Fancy
class that generates fancy sequences with operations to append integers, increment all values, multiply all values, and retrieve the value at a specific index modulo 10^9 + 7.
Key Insights
- Maintain a list to store the sequence of integers.
- Use two variables to track the total increment and multiplier applied to all elements.
- When retrieving the value at a specific index, compute the effective value using the stored increment and multiplier to avoid modifying all elements directly.
Space and Time Complexity
Time Complexity:
- O(1) for
append
,addAll
, andmultAll
operations. - O(1) for
getIndex
, as it computes the value in constant time.
Space Complexity:
- O(n) for storing the sequence of integers.
Solution
The solution uses a list to store the integers of the sequence. The class maintains two variables: total_increment
for the cumulative increment applied and total_multiplier
for the cumulative multiplier. This allows operations to be performed efficiently without updating the entire list of integers directly. The getIndex
method computes the effective value using these two variables, ensuring the correct result is returned even after multiple operations.