-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update 523 java, progress, add 1109 java
- Loading branch information
Showing
5 changed files
with
206 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
leetcode_java/src/main/java/LeetCodeJava/Array/CorporateFlightBookings.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package LeetCodeJava.Array; | ||
|
||
// https://leetcode.com/problems/corporate-flight-bookings/description/ | ||
/** | ||
* 1109. Corporate Flight Bookings | ||
* Solved | ||
* Medium | ||
* Topics | ||
* Companies | ||
* 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 | ||
*/ | ||
public class CorporateFlightBookings { | ||
|
||
// V0 | ||
// public int[] corpFlightBookings(int[][] bookings, int n) { | ||
// | ||
// } | ||
|
||
// V1 | ||
|
||
// V2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters