最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

LeetCode 1109. Corporate Flight Bookings

2023-05-30 11:30 作者:您是打尖兒還是住店呢  | 我要投稿

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:

Input: bookings = [[1,2,10],[2,3,20],[2,5,25]], n = 5

Output: [10,55,45,25,25]

Explanation:

Flight labels:? ? ? ? ? ? ? 1 ? 2 ? 3 ? 4 ? 5?

Booking 1 reserved: ?10 ?10?

Booking 2 reserved: ? ? ?20 ?20?

Booking 3 reserved: ? ? ?25 ?25 ?25 ?25?

Total seats: ? ? ? ? 10 ?55 ?45 ?25 ?25 Hence, answer = [10,55,45,25,25]

Example 2:

Input: bookings = [[1,2,10],[2,2,15]], n = 2

Output: [10,25]

Explanation:

Flight labels:? ? ? ? ? ? ? ?1 ? 2?

Booking 1 reserved: ?10 ?10

Booking 2 reserved:? ? ? ??15?

Total seats: ? ? ? ? 10 ?25 Hence, answer = [10,25]

?依次遍歷即可,

下面是代碼:

Constraints:

  • 1 <= n <= 2 * 104

  • 1 <= bookings.length <= 2 * 104

  • bookings[i].length == 3

  • 1 <= firsti?<= lasti?<= n

  • 1 <= seatsi?<= 104


Runtime:?803 ms, faster than?33.42%?of?Java?online submissions for?Corporate Flight Bookings.

Memory Usage:?55.2 MB, less than?98.74%?of?Java?online submissions for?Corporate Flight Bookings.


LeetCode 1109. Corporate Flight Bookings的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國家法律
彭州市| 庆阳市| 彭山县| 夹江县| 运城市| 洛扎县| 雷州市| 南宁市| 滕州市| 昌平区| 绥中县| 海淀区| 邻水| 崇文区| 泰安市| 岗巴县| 车致| 西乌珠穆沁旗| 屏山县| 博客| 湘阴县| 双桥区| 榕江县| 兴安盟| 库尔勒市| 六枝特区| 柘荣县| 偏关县| 垫江县| 南昌市| 沭阳县| 禹州市| 高阳县| 黔西县| 嘉义市| 平顶山市| 扬中市| 武陟县| 普定县| 西青区| 罗定市|