-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
163 lines (137 loc) · 4.7 KB
/
Solution.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
class Solution {
public int findMinStep(String board, String hand) {
final Zuma zuma = Zuma.create(board, hand);
final HashSet<Long> visited = new HashSet<>();
final ArrayList<Zuma> init = new ArrayList<>();
visited.add(zuma.board());
init.add(zuma);
return bfs(init, 0, visited);
}
private int bfs(ArrayList<Zuma> curr, int k, HashSet<Long> visited) {
if (curr.isEmpty()) {
return -1;
}
final ArrayList<Zuma> next = new ArrayList<>();
for (Zuma zuma : curr) {
ArrayList<Zuma> neib = zuma.getNextLevel(k, visited);
if (neib == null) {
return k + 1;
}
next.addAll(neib);
}
return bfs(next, k + 1, visited);
}
}
record Zuma(long board, long hand) {
public static Zuma create(String boardStr, String handStr) {
return new Zuma(Zuma.encode(boardStr, false), Zuma.encode(handStr, true));
}
public ArrayList<Zuma> getNextLevel(int depth, HashSet<Long> visited) {
final ArrayList<Zuma> next = new ArrayList<>();
final ArrayList<long[]> handList = this.buildHandList();
final long[] boardList = new long[32];
final int size = this.buildBoardList(boardList);
for (long[] pair : handList) {
for (int i = 0; i < size; ++i) {
final long rawBoard = pruningCheck(boardList[i], pair[0], i * 3, depth);
if (rawBoard == -1) {
continue;
}
final long nextBoard = updateBoard(rawBoard);
if (nextBoard == 0) {
return null;
}
if (pair[1] == 0 || visited.contains(nextBoard)) {
continue;
}
visited.add(nextBoard);
next.add(new Zuma(nextBoard, pair[1]));
}
}
return next;
}
private long pruningCheck(long insBoard, long ball, int pos, int depth) {
final long L = (insBoard >> (pos + 3)) & 0x7;
final long R = (insBoard >> (pos - 3)) & 0x7;
if (depth == 0 && (ball != R) && (L != R) || depth > 0 && (ball != R)) {
return -1;
}
return insBoard | (ball << pos);
}
private long updateBoard(long board) {
long stack = 0;
for (int i = 0; i < 64; i += 3) {
final long curr = (board >> i) & 0x7;
final long top = (stack) &0x7;
// pop (if possible)
if ((top > 0) && (curr != top) && (stack & 0x3F) == ((stack >> 3) & 0x3F)) {
stack >>= 9;
if ((stack & 0x7) == top) stack >>= 3;
}
if (curr == 0) {
// done
break;
}
// push and continue
stack = (stack << 3) | curr;
}
return stack;
}
private ArrayList<long[]> buildHandList() {
final ArrayList<long[]> handList = new ArrayList<>();
long prevBall = 0;
long ballMask = 0;
for (int i = 0; i < 16; i += 3) {
final long currBall = (this.hand >> i) & 0x7;
if (currBall == 0) {
break;
}
if (currBall != prevBall) {
prevBall = currBall;
handList.add(
new long[] {currBall, ((this.hand >> 3) & ~ballMask) | (this.hand & ballMask)});
}
ballMask = (ballMask << 3) | 0x7;
}
return handList;
}
private int buildBoardList(long[] buffer) {
int ptr = 0;
long ballMask = 0x7;
long insBoard = this.board << 3;
buffer[ptr++] = insBoard;
while (true) {
final long currBall = this.board & ballMask;
if (currBall == 0) {
break;
}
ballMask <<= 3;
insBoard = (insBoard | currBall) & ~ballMask;
buffer[ptr++] = insBoard;
}
return ptr;
}
private static long encode(String stateStr, boolean sortFlag) {
final char[] stateChars = stateStr.toCharArray();
if (sortFlag) {
Arrays.sort(stateChars);
}
long stateBits = 0;
for (char ch : stateChars) {
stateBits = (stateBits << 3) | Zuma.encode(ch);
}
return stateBits;
}
private static long encode(char ch) {
return switch (ch) {
case 'R' -> 0x1;
case 'G' -> 0x2;
case 'B' -> 0x3;
case 'W' -> 0x4;
case 'Y' -> 0x5;
case ' ' -> 0x0;
default ->
throw new IllegalArgumentException("Invalid char: " + ch);
};
}
}