首页 > 其他分享 >1109. 航班预订统计

1109. 航班预订统计

时间:2022-08-18 21:22:48浏览次数:69  
标签:25 10 预订 bookings 航班 vector 1109

 

labuladong 题解思路 难度中等

这里有 n 个航班,它们分别从 1 到 n 进行编号。

有一份航班预订表 bookings ,表中第 i 条预订记录 bookings[i] = [firsti, lasti, seatsi] 意味着在从 firsti 到 lasti (包含 firsti 和 lasti )的 每个航班 上预订了 seatsi 个座位。

请你返回一个长度为 n 的数组 answer,里面的元素是每个航班预定的座位总数。

 

示例 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]
     
class Solution {
public:

    vector<int> corpFlightBookings(vector<vector<int>>& bookings, int n) {
        vector<int> res = vector<int>(n,0);
        vector<int> df = vector<int>(n,0);

        for(auto booking: bookings) {
            // update df
            int first = booking[0]-1,last = booking[1]-1,seats = booking[2];
            df[first] += seats;
            if (last+1<n) df[last+1]-=seats;
        }
        //get res from df
        res[0] = df[0];
        for(int i = 1; i < n ;i++) {
            res[i] = df[i] + res[i-1];
        }
        return res;
    }
};

 

标签:25,10,预订,bookings,航班,vector,1109
From: https://www.cnblogs.com/zle1992/p/16600176.html

相关文章