838. Push Dominoes
Description
There are n dominoes in a line, and we place each domino vertically upright. In the beginning, we simultaneously push some of the dominoes either to the left or to the right.
After each second, each domino that is falling to the left pushes the adjacent domino on the left. Similarly, the dominoes falling to the right push their adjacent dominoes standing on the right.
When a vertical domino has dominoes falling on it from both sides, it stays still due to the balance of the forces.
For the purposes of this question, we will consider that a falling domino expends no additional force to a falling or already fallen domino.
You are given a string dominoes representing the initial state where:
dominoes[i] = 'L', if theithdomino has been pushed to the left,dominoes[i] = 'R', if theithdomino has been pushed to the right, anddominoes[i] = '.', if theithdomino has not been pushed.
Return a string representing the final state.
Example 1:
Input: dominoes = "RR.L" Output: "RR.L" Explanation: The first domino expends no additional force on the second domino.
Example 2:

Input: dominoes = ".L.R...LR..L.." Output: "LL.RR.LLRRLL.."
Constraints:
n == dominoes.length1 <= n <= 105dominoes[i]is either'L','R', or'.'.
Solutions
Solution: Prefix Sum
- Time complexity: O(n)
- Space complexity: O(n)
JavaScript
/**
* @param {string} dominoes
* @return {string}
*/
const pushDominoes = function (dominoes) {
const n = dominoes.length;
const forcesR = Array.from({ length: n }, () => n);
const forcesL = Array.from({ length: n }, () => n);
const result = dominoes.split('');
for (let index = 1; index < n; index++) {
const value = dominoes[index];
if (value === 'L') continue;
if (dominoes[index - 1] === 'R' && value === '.') {
forcesR[index] = 1;
continue;
}
if (forcesR[index - 1] === n) continue;
forcesR[index] = forcesR[index - 1] + 1;
}
for (let index = n - 2; index >= 0; index--) {
const value = dominoes[index];
if (value === 'R') continue;
if (dominoes[index + 1] === 'L' && value === '.') {
forcesL[index] = 1;
continue;
}
if (forcesL[index + 1] === n) continue;
forcesL[index] = forcesL[index + 1] + 1;
}
for (let index = 0; index < n; index++) {
if (forcesR[index] === forcesL[index]) continue;
result[index] = forcesR[index] > forcesL[index] ? 'L' : 'R';
}
return result.join('');
};