leet-code/src/main/java/leetcode/editor/cn/PushDominoes.java
2022-02-21 18:01:40 +08:00

100 lines
3.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//n 张多米诺骨牌排成一行,将每张多米诺骨牌垂直竖立。在开始时,同时把一些多米诺骨牌向左或向右推。
//
// 每过一秒,倒向左边的多米诺骨牌会推动其左侧相邻的多米诺骨牌。同样地,倒向右边的多米诺骨牌也会推动竖立在其右侧的相邻多米诺骨牌。
//
// 如果一张垂直竖立的多米诺骨牌的两侧同时有多米诺骨牌倒下时,由于受力平衡, 该骨牌仍然保持不变。
//
// 就这个问题而言,我们会认为一张正在倒下的多米诺骨牌不会对其它正在倒下或已经倒下的多米诺骨牌施加额外的力。
//
// 给你一个字符串 dominoes 表示这一行多米诺骨牌的初始状态,其中:
//
//
// dominoes[i] = 'L',表示第 i 张多米诺骨牌被推向左侧,
// dominoes[i] = 'R',表示第 i 张多米诺骨牌被推向右侧,
// dominoes[i] = '.',表示没有推动第 i 张多米诺骨牌。
//
//
// 返回表示最终状态的字符串。
//
//
// 示例 1
//
//
//输入dominoes = "RR.L"
//输出:"RR.L"
//解释:第一张多米诺骨牌没有给第二张施加额外的力。
//
//
// 示例 2
//
//
//输入dominoes = ".L.R...LR..L.."
//输出:"LL.RR.LLRRLL.."
//
//
//
//
// 提示:
//
//
// n == dominoes.length
// 1 <= n <= 10⁵
// dominoes[i] 为 'L'、'R' 或 '.'
//
// Related Topics 双指针 字符串 动态规划 👍 211 👎 0
package leetcode.editor.cn;
//838:推多米诺
public class PushDominoes {
public static void main(String[] args) {
Solution solution = new PushDominoes().new Solution();
// TO TEST
solution.pushDominoes(".L.R...LR..L..");
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public String pushDominoes(String dominoes) {
int size = dominoes.length();
int[] lefts = new int[size];
int bef = -1;
for (int i = 0; i < size; i++) {
if (dominoes.charAt(i) == '.') {
lefts[i] = bef == -1 ? 0 : ++bef;
} else if (dominoes.charAt(i) == 'R') {
bef = 0;
} else {
bef = -1;
}
}
bef = -1;
int[] rights = new int[size];
for (int i = size - 1; i >= 0; i--) {
if (dominoes.charAt(i) == '.') {
rights[i] = bef == -1 ? 0 : ++bef;
} else if (dominoes.charAt(i) == 'L') {
bef = 0;
} else {
bef = -1;
}
}
StringBuilder str = new StringBuilder();
for (int i = 0; i < size; i++) {
if (lefts[i] == 0 && rights[i] == 0) {
str.append(dominoes.charAt(i));
} else if (lefts[i] == rights[i]) {
str.append('.');
} else if (lefts[i] == 0 || (lefts[i] > rights[i] && rights[i] > 0)) {
str.append('L');
} else {
str.append('R');
}
}
return str.toString();
}
}
//leetcode submit region end(Prohibit modification and deletion)
}