IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Leetcode1109航班预定记录&Leetcode1094拼车(差分数组的应用) -> 正文阅读

[数据结构与算法]Leetcode1109航班预定记录&Leetcode1094拼车(差分数组的应用)

差分数组工具类:

  • 思路:定义一个长度为nums数组长度的差分数组diff[];该数组的第一个元素即diff[0]等于nums[0];从第二个元素起,存放的每一个空间为num[i]-nums[i-1]的差值;

  • 当求数组nums[]从第i个元素到第j个元素均增加val值时(val可正可负);即等价于diff[i]+=val;且当j+1不超过差分数组长度时,diff[j+1]-=val;

  • 最后,利用差分数组的原理,重新返回目标结果数组。

class Difference{
 ? ?private int[] diff;
?
 ? ?public Difference(int[] nums){
 ? ? ? ?assert nums.length>0;
 ? ? ? ?diff = new int[nums.length];
 ? ? ? ?diff[0] = nums[0];
?
 ? ? ? ?for(int i =1 ;i<nums.length;i++){
 ? ? ? ? ? ?diff[i]= nums[i]-nums[i-1];
 ? ? ?  }
 ?  }
?
 ? ?public void increasement(int i,int j, int val){
 ? ? ? ?diff[i]+=val;
 ? ? ? ?if(j+1<diff.length){
 ? ? ? ? ? ?diff[j+1]-=val;
 ? ? ?  }
?
 ?  }
?
 ? ?public int[] res(){
 ? ? ? ?int[] res = new int[diff.length];
 ? ? ? ?res[0]=diff[0];
 ? ? ? ?for(int i =1 ;i<diff.length;i++){
 ? ? ? ? ? ?res[i] = res[i-1]+diff[i];
 ? ? ?  }
 ? ? ? ?return res;
?
 ?  }

差分数组的应用:

Leetcode1109:航班预定统计

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

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

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

  • 题目翻译:数组 answer里面的元素是每个航班预定的座位总数。初始状态,数组answer中的每个元素均为0;每条预定记录则为answer数组下标从fisti-1到lasti-1均增加了seatsi,求最后增加了预定记录的数组answer。

class Solution {
 ? ?public int[] corpFlightBookings(int[][] bookings, int n) {
 ? ? ? ?int[] nums = new int[n];
 ? ? ? ?Difference df = new ?Difference(nums);
 ? ? ? ?for(int[] booking:bookings){
 ? ? ? ? ? ?int i =booking[0]-1;
 ? ? ? ? ? ?int j = booking[1]-1;
 ? ? ? ? ? ?int val = booking[2];
 ? ? ? ? ? ?df.increasement(i,j,val);
 ? ? ?  } 
?
 ? ? ? ?return df.res();
 ?  }
?
 ? ?
}
?
class Difference{
 ? ?private int[] diff;
?
 ? ?public Difference(int[] nums){
 ? ? ? ?assert nums.length>0;
 ? ? ? ?diff = new int[nums.length];
 ? ? ? ?diff[0] = nums[0];
?
 ? ? ? ?for(int i =1 ;i<nums.length;i++){
 ? ? ? ? ? ?diff[i]= nums[i]-nums[i-1];
 ? ? ?  }
 ?  }
?
 ? ?public void increasement(int i,int j, int val){
 ? ? ? ?diff[i]+=val;
 ? ? ? ?if(j+1<diff.length){
 ? ? ? ? ? ?diff[j+1]-=val;
 ? ? ?  }
?
 ?  }
?
 ? ?public int[] res(){
 ? ? ? ?int[] res = new int[diff.length];
 ? ? ? ?res[0]=diff[0];
 ? ? ? ?for(int i =1 ;i<diff.length;i++){
 ? ? ? ? ? ?res[i] = res[i-1]+diff[i];
 ? ? ?  }
 ? ? ? ?return res;
?
 ?  }
}

Leetcode1094.拼车

题目:车上最初有 capacity 个空座位。车 只能 向一个方向行驶(也就是说,不允许掉头或改变方向

给定整数 capacity 和一个数组 trips , trip[i] = [numPassengersi, fromi, toi] 表示第 i 次旅行有 numPassengersi 乘客,接他们和放他们的位置分别是 fromi 和 toi 。这些位置是从汽车的初始位置向东的公里数。

当且仅当你可以在所有给定的行程中接送所有乘客时,返回 true,否则请返回 false。

class Solution {
 ? ?public boolean carPooling(int[][] trips, int capacity) {
 ? ? ? ?int[] nums = new int[1001];
 ? ? ? ?Difference df = new Difference(nums);
?
 ? ? ? ?for(int[] trip:trips){
 ? ? ? ? ? ?int val = trip[0];
 ? ? ? ? ? ?int i = trip[1];
 ? ? ? ? ? ?int j = trip[2]-1;
 ? ? ? ? ? ?df.increasement(i,j,val);
?
 ? ? ?  }
?
 ? ? ? ?int[] res = df.res();
 ? ? ? ?for(int i =0 ; i<res.length;i++){
 ? ? ? ? ? ?if(res[i]>capacity){
 ? ? ? ? ? ? ? ?return false;
 ? ? ? ? ?  }
 ? ? ?  }
 ? ? ? ?return true;
?
 ? ? ? ?
?
 ?  }
?
 ? ?class Difference{
?
 ? ? ? ?private int[] diff ;
?
 ? ? ? ?public Difference(int[] nums){
 ? ? ? ? ? ?assert nums.length>0;
 ? ? ? ? ? ?diff = new int[nums.length];
 ? ? ? ? ? ?diff[0]=nums[0];
 ? ? ? ? ? ?for(int i =1;i<nums.length;i++){
 ? ? ? ? ? ? ? ?diff[i] = nums[i] - nums[i-1];
 ? ? ? ? ?  }
?
 ? ? ?  }
?
 ? ? ? ?public void increasement(int i,int j ,int val){
 ? ? ? ? ? ?diff[i]+=val;
 ? ? ? ? ? ?if(j+1<diff.length){
 ? ? ? ? ? ? ? ?diff[j+1]-=val;
 ? ? ? ? ?  }
 ? ? ?  }
?
 ? ? ? ?public int[] res(){
 ? ? ? ? ? ?int[] res=new int[diff.length];
 ? ? ? ? ? ?res[0]=diff[0];
 ? ? ? ? ? ?for(int i =1;i<diff.length;i++){
 ? ? ? ? ? ? ? ?res[i] = res[i-1]+diff[i];
 ? ? ? ? ?  }
 ? ? ? ? ? ?return res;
?
 ? ? ?  }
 ?  }
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-04 12:36:03  更:2022-04-04 12:38:29 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 10:00:13-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码