-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path[1094]拼车.java
62 lines (51 loc) · 1.27 KB
/
[1094]拼车.java
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
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public boolean carPooling(int[][] trips, int capacity) {
int[] nums = new int[1001];
Difference difference = new Difference(nums);
for (int[] trip : trips) {
int i = trip[1] ;
int j = trip[2] - 1;
int val = trip[0];
difference.increment(i, j, val);
}
int[] a = difference.result();
//货车自始至终都不能超载
for (int i = 0; i < a.length; i++) {
if (a[i] > capacity) {
return false;
}
}
return true;
}
}
// 封装成一个类
class Difference {
// 差分数组
private int[] diff;
// 构造方法初始化
public Difference(int[] nums) {
diff = new int[nums.length];
diff[0] = nums[0];
for (int i = 1; i < nums.length; i++) {
diff[i] = nums[i] - nums[i - 1];
}
}
/* 给闭区间 [i, j] 增加 val(可以是负数)*/
public void increment(int i, int j, int val) {
diff[i] = diff[i] + val;
if (j + 1 < diff.length) {
diff[j + 1] = diff[j+1] - val;
}
}
/* 返回结果数组 */
public int[] result() {
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;
}
}
//leetcode submit region end(Prohibit modification and deletion)