forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_358.java
65 lines (54 loc) · 2.11 KB
/
_358.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
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import java.util.PriorityQueue;
import java.util.Queue;
/**
* 358. Rearrange String k Distance Apart
*
* Given a non-empty string s and an integer k, rearrange the string such that the same characters are at least distance k from each other.
All input strings are given in lowercase letters. If it is not possible to rearrange the string, return an empty string "".
Example 1:
s = "aabbcc", k = 3
Result: "abcabc"
The same letters are at least distance 3 from each other.
Example 2:
s = "aaabc", k = 3
Answer: ""
It is not possible to rearrange the string.
Example 3:
s = "aaadbbcc", k = 2
Answer: "abacabcd"
Another possible answer is: "abcabcda"
The same letters are at least distance 2 from each other.
*/
public class _358 {
public static class Solution1 {
public String rearrangeString(String s, int k) {
Map<Character, Integer> count = new HashMap<>();
for (char c : s.toCharArray()) {
count.put(c, count.getOrDefault(c, 0) + 1);
}
PriorityQueue<Map.Entry<Character, Integer>> heap =
new PriorityQueue<>((a, b) -> b.getValue() - a.getValue());
heap.addAll(count.entrySet());
Queue<Map.Entry<Character, Integer>> waitQueue = new LinkedList<>();
StringBuilder stringBuilder = new StringBuilder();
while (!heap.isEmpty()) {
Map.Entry<Character, Integer> entry = heap.poll();
stringBuilder.append(entry.getKey());
entry.setValue(entry.getValue() - 1);
waitQueue.offer(entry);
if (waitQueue.size() < k) {
continue; //there's only k-1 chars in the waitHeap, not full yet
}
Map.Entry<Character, Integer> front = waitQueue.poll();
if (front.getValue() > 0) {
heap.offer(front);
}
}
return stringBuilder.length() == s.length() ? stringBuilder.toString() : "";
}
}
}