1109. Corporate Flight Bookings
There are n
flights, and they are labeled from 1
to n
.
We have a list of flight bookings. The i
-th booking bookings[i] = [i, j, k]
means that we booked k
seats from flights labeled i
to j
inclusive.
Return an array answer
of length n
, representing the number of seats booked on each flight in order of their label.
Example 1:
Constraints:
1 <= bookings.length <= 20000
1 <= bookings[i][0] <= bookings[i][1] <= n <= 20000
1 <= bookings[i][2] <= 10000
解题要点:
暴力解:遍历整个数组,在每一个booking记录里,根据 i 和 j 一个个加进最终返回值。
优化解:参照大神,记录出开始 i 的位置,和结束 j 的位置。然后进行处理。
Last updated
Was this helpful?