-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1109.java
More file actions
70 lines (69 loc) · 2.11 KB
/
Copy path1109.java
File metadata and controls
70 lines (69 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// 1109. Corporate Flight Bookings
// 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 1120ms Beats 14.04%of users with Java
// Memory 54.76MB Beats 96.06%of users with Java
class Solution {
public int[] corpFlightBookings(int[][] bookings, int n) {
int[] total = new int[n];
for (int[] booking: bookings) {
for (int i = booking[0]; i <= booking[1]; i++) {
total[i - 1] = total[i - 1] + booking[2];
}
}
return total;
}
}
// Runtime 3ms Beats 88.92%of users with Java
// Memory 54.90MB Beats 92.86%of users with Java
class Solution {
public int[] corpFlightBookings(int[][] bookings, int n) {
int[] total = new int[n];
for (int[] booking: bookings) {
total[booking[0] - 1] = total[booking[0] - 1] + booking[2];
if (booking[1] < n) total[booking[1]] = total[booking[1]] - booking[2];
}
for (int i = 1; i < n; i++) {
total[i] = total[i - 1] + total[i];
}
return total;
}
}