-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBus.java
42 lines (28 loc) · 1.07 KB
/
Bus.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
// import java.util.ArrayList;
// import java.util.Arrays;
// import java.util.List;;
// public class Bus {
// public static void main(String[] args) {
// int[] buses = { 3 }, passengers = { 2, 3 };
// int capacity = 2;
// System.out.println(latestTimeCatchTheBus(buses, passengers, capacity));
// }
// public static int latestTimeCatchTheBus(int[] buses, int[] passengers, int capacity) {
// Arrays.sort(passengers);
// Arrays.sort(buses);
// List<Integer>[] list=new ArrayList[buses.length];
// for (int bus : buses) {
// list[bus]=new ArrayList<>(capacity);
// }
// int position = 0;
// for (int i = 0; i < buses.length ; i++) {
// int count = 0;
// while (passengers[position] <= buses[i] && count <= capacity) {
// list[i].add(passengers[position]);
// position += 1;
// count += 1;
// }
// }
// return list[buses.length-1].get(0)-1;
// }
// }