-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path649.java
More file actions
29 lines (24 loc) · 699 Bytes
/
649.java
File metadata and controls
29 lines (24 loc) · 699 Bytes
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
class Solution {
public String predictPartyVictory(String senate) {
Queue<Integer> rad = new LinkedList<>();
Queue<Integer> dir = new LinkedList<>();
int n = senate.length();
for (int i = 0; i < n; i++){
if (senate.charAt(i) == 'R'){
rad.add(i);
} else {
dir.add(i);
}
}
while (!rad.isEmpty() && !dir.isEmpty()) {
if (rad.peek() < dir.peek()) {
rad.add(n++);
} else {
dir.add(n++);
}
dir.poll();
rad.poll();
}
return (rad.isEmpty() ? ("Dire"):("Radiant"));
}
}