838. Push Dominoes

There areNdominoes 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.

Given a string "S" representing the initial state. S[i] = 'L', if the i-th domino has been pushed to the left;S[i] = 'R', if the i-th domino has been pushed to the right;S[i] = '.', if thei-th domino has not been pushed.

Return a string representing the final state.

Example 1:

Input: 
".L.R...LR..L.."

Output: 
"LL.RR.LLRRLL.."

Example 2:

Input: 
"RR.L"

Output: 
"RR.L"

Explanation: 
The first domino expends no additional force on the second domino.

Note:

  1. 0 < = N < = 10^5
  2. String dominoes contains only 'L ', 'R' and '.'
class Solution {

    public char[] ans;
    public String pushDominoes(String dominoes) {

        int n = dominoes.length();
        ans = dominoes.toCharArray();
        int prev = -1;
        for (int i = 0; i < n; i++){

            char cur = dominoes.charAt(i);

            if (prev == -1 && (cur == 'L' || cur == 'R')){
                prev = i;
                if (cur == 'L'){
                    fillAll(ans, 0, i, 'L');
                }
            }
            else if (cur == '.'){
                continue;
            }
            else{
                if (cur == 'L'){
                    // LL
                    if (dominoes.charAt(prev) == 'L'){
                        fillAll(ans, prev, i, 'L');
                    }
                    // RL
                    else{
                        fillHalfHalf(ans, prev, i);
                    }
                }
                else{
                    // LR
                    if ((dominoes.charAt(prev) == 'L')){
                        // do nothing
                    }
                    // RR
                    else{
                        fillAll(ans, prev, i, 'R');
                    }
                }
            }

            prev = i;

        }

        if (prev != -1 && dominoes.charAt(prev) == 'R'){
            fillAll(ans, prev, n - 1, 'R');
        }

        return new String(ans);
    }

    private void fillAll(char[] input, int left, int right, char val){
        for (int i = left; i <= right; i++){
            input[i] = val;
        }

    }

    private void fillHalfHalf(char[] input, int left, int right){
        char leftVal = input[left], rightVal = input[right];

        while (left < right){
            input[left++] = leftVal;
            input[right--] = rightVal;
        }
    }
}

results for ""

    No results matching ""