forked from sherxon/AlgoDS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemoryReallocation_6.java
More file actions
88 lines (80 loc) · 2.33 KB
/
Copy pathMemoryReallocation_6.java
File metadata and controls
88 lines (80 loc) · 2.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package adventofcode;
import java.util.*;
/**
* Why Did you create this class? what does it do?
*/
public class MemoryReallocation_6 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
List<Integer> list = new ArrayList<>();
while (scanner.hasNext()) {
try {
int i = Integer.parseInt(scanner.next());
list.add(i);
} catch (Exception e) {
break;
}
}
System.out.println(solve2(list));
}
private static int solve(List<Integer> list) {
int count = 0;
Set<String> set = new HashSet<>();
String s = list.toString();
System.out.println(s);
while (set.add(s)) {
int max = -1;
int maxi = -1;
for (int i = 0; i < list.size(); i++) {
if (list.get(i) > max) {
max = list.get(i);
maxi = i;
}
}
list.set(maxi, 0);
maxi++;
maxi %= list.size();
while (max > 0) {
list.set(maxi, list.get(maxi) + 1);
maxi++;
maxi %= list.size();
max--;
}
count++;
s = list.toString();
System.out.println(s);
}
return count;
}
private static int solve2(List<Integer> list) {
int count = 0;
Map<String, Integer> map = new HashMap<>();
String s = list.toString();
System.out.println(s);
while (!map.containsKey(s)) {
map.put(s, count);
int max = -1;
int maxi = -1;
for (int i = 0; i < list.size(); i++) {
if (list.get(i) > max) {
max = list.get(i);
maxi = i;
}
}
list.set(maxi, 0);
maxi++;
maxi %= list.size();
while (max > 0) {
list.set(maxi, list.get(maxi) + 1);
maxi++;
maxi %= list.size();
max--;
}
count++;
s = list.toString();
System.out.println(s + " " + count);
}
System.out.println(s + " " + count);
return count - map.get(s);
}
}