1405:最长快乐字符串
This commit is contained in:
parent
22ded87014
commit
c43acc0905
98
src/main/java/leetcode/editor/cn/LongestHappyString.java
Normal file
98
src/main/java/leetcode/editor/cn/LongestHappyString.java
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
//如果字符串中不含有任何 'aaa','bbb' 或 'ccc' 这样的字符串作为子串,那么该字符串就是一个「快乐字符串」。
|
||||||
|
//
|
||||||
|
// 给你三个整数 a,b ,c,请你返回 任意一个 满足下列全部条件的字符串 s:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// s 是一个尽可能长的快乐字符串。
|
||||||
|
// s 中 最多 有a 个字母 'a'、b 个字母 'b'、c 个字母 'c' 。
|
||||||
|
// s 中只含有 'a'、'b' 、'c' 三种字母。
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 如果不存在这样的字符串 s ,请返回一个空字符串 ""。
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 1:
|
||||||
|
//
|
||||||
|
// 输入:a = 1, b = 1, c = 7
|
||||||
|
//输出:"ccaccbcc"
|
||||||
|
//解释:"ccbccacc" 也是一种正确答案。
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 2:
|
||||||
|
//
|
||||||
|
// 输入:a = 2, b = 2, c = 1
|
||||||
|
//输出:"aabbc"
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 3:
|
||||||
|
//
|
||||||
|
// 输入:a = 7, b = 1, c = 0
|
||||||
|
//输出:"aabaa"
|
||||||
|
//解释:这是该测试用例的唯一正确答案。
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 提示:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 0 <= a, b, c <= 100
|
||||||
|
// a + b + c > 0
|
||||||
|
//
|
||||||
|
// Related Topics 贪心 字符串 堆(优先队列) 👍 109 👎 0
|
||||||
|
|
||||||
|
package leetcode.editor.cn;
|
||||||
|
|
||||||
|
import java.util.PriorityQueue;
|
||||||
|
import java.util.Queue;
|
||||||
|
|
||||||
|
//1405:最长快乐字符串
|
||||||
|
class LongestHappyString {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
//测试代码
|
||||||
|
Solution solution = new LongestHappyString().new Solution();
|
||||||
|
}
|
||||||
|
|
||||||
|
//力扣代码
|
||||||
|
//leetcode submit region begin(Prohibit modification and deletion)
|
||||||
|
class Solution {
|
||||||
|
public String longestDiverseString(int a, int b, int c) {
|
||||||
|
Queue<int[]> queue = new PriorityQueue<>((arr1, arr2) -> arr2[0] - arr1[0]);
|
||||||
|
if (a > 0) {
|
||||||
|
queue.add(new int[]{a, 0});
|
||||||
|
}
|
||||||
|
if (b > 0) {
|
||||||
|
queue.add(new int[]{b, 1});
|
||||||
|
}
|
||||||
|
if (c > 0) {
|
||||||
|
queue.add(new int[]{c, 2});
|
||||||
|
}
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
while (!queue.isEmpty()) {
|
||||||
|
int size = sb.length();
|
||||||
|
int[] arrs = queue.poll();
|
||||||
|
if (size < 2 || sb.charAt(size - 1) - 'a' != arrs[1] || sb.charAt(size - 2) - 'a' != arrs[1]) {
|
||||||
|
sb.append((char) (arrs[1] + 'a'));
|
||||||
|
arrs[0]--;
|
||||||
|
if (arrs[0] != 0) {
|
||||||
|
queue.add(arrs);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (queue.isEmpty()) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
int[] arrs1 = queue.poll();
|
||||||
|
sb.append((char) (arrs1[1] + 'a'));
|
||||||
|
arrs1[0]--;
|
||||||
|
if (arrs1[0] != 0) {
|
||||||
|
queue.add(arrs1);
|
||||||
|
}
|
||||||
|
queue.add(arrs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//leetcode submit region end(Prohibit modification and deletion)
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
<p>如果字符串中不含有任何 <code>'aaa'</code>,<code>'bbb'</code> 或 <code>'ccc'</code> 这样的字符串作为子串,那么该字符串就是一个「快乐字符串」。</p>
|
||||||
|
|
||||||
|
<p>给你三个整数 <code>a</code>,<code>b</code> ,<code>c</code>,请你返回 <strong>任意一个</strong> 满足下列全部条件的字符串 <code>s</code>:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>s</code> 是一个尽可能长的快乐字符串。</li>
|
||||||
|
<li><code>s</code> 中 <strong>最多</strong> 有<code>a</code> 个字母 <code>'a'</code>、<code>b</code> 个字母 <code>'b'</code>、<code>c</code> 个字母 <code>'c'</code> 。</li>
|
||||||
|
<li><code>s </code>中只含有 <code>'a'</code>、<code>'b'</code> 、<code>'c'</code> 三种字母。</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p>如果不存在这样的字符串 <code>s</code> ,请返回一个空字符串 <code>""</code>。</p>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>示例 1:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输入:</strong>a = 1, b = 1, c = 7
|
||||||
|
<strong>输出:</strong>"ccaccbcc"
|
||||||
|
<strong>解释:</strong>"ccbccacc" 也是一种正确答案。
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 2:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输入:</strong>a = 2, b = 2, c = 1
|
||||||
|
<strong>输出:</strong>"aabbc"
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 3:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输入:</strong>a = 7, b = 1, c = 0
|
||||||
|
<strong>输出:</strong>"aabaa"
|
||||||
|
<strong>解释:</strong>这是该测试用例的唯一正确答案。</pre>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>提示:</strong></p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>0 <= a, b, c <= 100</code></li>
|
||||||
|
<li><code>a + b + c > 0</code></li>
|
||||||
|
</ul>
|
||||||
|
<div><div>Related Topics</div><div><li>贪心</li><li>字符串</li><li>堆(优先队列)</li></div></div><br><div><li>👍 109</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user