1109:航班预订统计

This commit is contained in:
huangge1199 2021-08-31 11:36:23 +08:00
parent b8d34a51a3
commit 0728284b25
3 changed files with 121 additions and 1 deletions

View File

@ -0,0 +1,73 @@
//这里有 n 个航班它们分别从 1 n 进行编号
//
// 有一份航班预订表 bookings 表中第 i 条预订记录 bookings[i] = [firsti, lasti, seatsi] 意味着在从
//firsti lasti 包含 firsti lasti 每个航班 上预订了 seatsi 个座位
//
// 请你返回一个长度为 n 的数组 answer其中 answer[i] 是航班 i 上预订的座位总数
//
//
//
// 示例 1
//
//
//输入bookings = [[1,2,10],[2,3,20],[2,5,25]], n = 5
//输出[10,55,45,25,25]
//解释
//航班编号 1 2 3 4 5
//预订记录 1 10 10
//预订记录 2 20 20
//预订记录 3 25 25 25 25
//总座位数 10 55 45 25 25
//因此answer = [10,55,45,25,25]
//
//
// 示例 2
//
//
//输入bookings = [[1,2,10],[2,2,15]], n = 2
//输出[10,25]
//解释
//航班编号 1 2
//预订记录 1 10 10
//预订记录 2 15
//总座位数 10 25
//因此answer = [10,25]
//
//
//
//
// 提示
//
//
// 1 <= n <= 2 * 10
// 1 <= bookings.length <= 2 * 10
// bookings[i].length == 3
// 1 <= firsti <= lasti <= n
// 1 <= seatsi <= 10
//
// Related Topics 数组 前缀和 👍 218 👎 0
package leetcode.editor.cn;
//1109:航班预订统计
class CorporateFlightBookings{
public static void main(String[] args) {
//测试代码
Solution solution = new CorporateFlightBookings().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int[] corpFlightBookings(int[][] bookings, int n) {
int[] result = new int[n];
for (int[] booking : bookings) {
for (int j = booking[0] - 1; j < booking[1]; j++) {
result[j] += booking[2];
}
}
return result;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,47 @@
<p>这里有 <code>n</code> 个航班,它们分别从 <code>1</code><code>n</code> 进行编号。</p>
<p>有一份航班预订表 <code>bookings</code> ,表中第 <code>i</code> 条预订记录 <code>bookings[i] = [first<sub>i</sub>, last<sub>i</sub>, seats<sub>i</sub>]</code> 意味着在从 <code>first<sub>i</sub></code> 到 <code>last<sub>i</sub></code> <strong>包含</strong> <code>first<sub>i</sub></code><code>last<sub>i</sub></code> )的 <strong>每个航班</strong> 上预订了 <code>seats<sub>i</sub></code> 个座位。</p>
<p>请你返回一个长度为 <code>n</code> 的数组 <code>answer</code>,其中 <code>answer[i]</code> 是航班 <code>i</code> 上预订的座位总数。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>bookings = [[1,2,10],[2,3,20],[2,5,25]], n = 5
<strong>输出:</strong>[10,55,45,25,25]
<strong>解释:</strong>
航班编号 1 2 3 4 5
预订记录 1 10 10
预订记录 2 20 20
预订记录 3 25 25 25 25
总座位数: 10 55 45 25 25
因此answer = [10,55,45,25,25]
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>bookings = [[1,2,10],[2,2,15]], n = 2
<strong>输出:</strong>[10,25]
<strong>解释:</strong>
航班编号 1 2
预订记录 1 10 10
预订记录 2 15
总座位数: 10 25
因此answer = [10,25]
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 <= n <= 2 * 10<sup>4</sup></code></li>
<li><code>1 <= bookings.length <= 2 * 10<sup>4</sup></code></li>
<li><code>bookings[i].length == 3</code></li>
<li><code>1 <= first<sub>i</sub> <= last<sub>i</sub> <= n</code></li>
<li><code>1 <= seats<sub>i</sub> <= 10<sup>4</sup></code></li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>前缀和</li></div></div><br><div><li>👍 218</li><li>👎 0</li></div>