1109. Corporate Flight Bookings
1109. Corporate Flight Bookings
Description
Difficulty: Medium
Related Topics: Array, Prefix Sum
There are n
flights that are labeled from 1
to n
.
You are given an array of flight bookings bookings
, where bookings[i] = [firsti, lasti, seatsi] represents a booking for flights firsti through lasti (inclusive) with seatsi seats reserved for each flight in the range.
Return an array answer
of length n
, where answer[i]
is the total number of seats reserved for flight i
.
Example 1:
1 | Input: bookings = [[1,2,10],[2,3,20],[2,5,25]], n = 5 |
Example 2:
1 | Input: bookings = [[1,2,10],[2,2,15]], n = 2 |
Constraints:
- 1 <= n <= 2 * 104
- 1 <= bookings.length <= 2 * 104
bookings[i].length == 3
- 1 <= firsti <= lasti <= n
- 1 <= seatsi <= 104
Hints/Notes
- Use the diff array
Solution
Language: C++
1 | class Solution { |