-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathProgrammers.java
More file actions
47 lines (40 loc) · 1.49 KB
/
Programmers.java
File metadata and controls
47 lines (40 loc) · 1.49 KB
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
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import static org.junit.Assert.assertArrayEquals;
/**
* Created by jeremy on 03/13/2019.
*/
public class Programmers {
public static int[] solution(int[] progresses, int[] speeds) {
List<Integer> deploys = new ArrayList<>();
Queue<Integer> works = IntStream.range(0, progresses.length).boxed().collect(Collectors.toCollection(LinkedList::new));
while (!works.isEmpty()) {
int done = 0;
// 1. check if work is done
for (int i = 0; i < progresses.length; i++) {
int progress = progresses[i];
if (works.element() == i && progress >= 100) {
done++;
works.remove();
}
}
if (done > 0) deploys.add(done);
// 2. work
for (int i = 0; i < progresses.length; i++) {
if (progresses[i] < 100) {
// print(progresses);
progresses[i] += speeds[i];
}
}
}
return deploys.stream().mapToInt(i -> i).toArray();
}
public static void print(int[] progresses) {
Arrays.stream(progresses).boxed().forEach(p -> System.out.print(p + " "));
System.out.println();
}
public static void main(String[] args) {
assertArrayEquals(new int [] { 2, 1 }, solution(new int [] { 93,30,55 }, new int[] { 1,30,5 }));
}
}