Problem Description
There is a long table with a line of plates and candles arranged on top of it. You are given a 0-indexed string s consisting of characters '' and '|' only, where a '' represents a plate and a '|' represents a candle. You are also given a 0-indexed 2D integer array queries where queries[i] = [left_i, right_i] denotes the substring s[left_i...right_i] (inclusive). For each query, you need to find the number of plates between candles that are in the substring. A plate is considered between candles if there is at least one candle to its left and at least one candle to its right in the substring.
Key Insights
- The task is to count plates '*' that are strictly between candles '|' in specified substrings.
- A plate is counted only if it has candles on both sides within the specified substring.
- Efficient handling of multiple queries (up to 100,000) is crucial given the string length can also be up to 100,000.
- Utilizing prefix sums can help in precomputing the number of plates and the positions of candles, allowing for quick query responses.
Space and Time Complexity
Time Complexity: O(n + q) where n is the length of the string and q is the number of queries.
Space Complexity: O(n) for storing prefix sums and candle positions.
Solution
To solve this problem, we can employ the following approach:
- Create a prefix sum array to count the number of plates '*' encountered up to each index.
- Maintain an array to store the positions of candles '|' to quickly find the nearest candles for any query.
- For each query, identify the left and right boundaries of the substring, locate the nearest candles, and use the prefix sums to count the plates between these candles.