zoukankan      html  css  js  c++  java
  • 838. Push Dominoes

    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.

    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 the i-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 '.'

    Approach #1: Two pointer. [C++]

    class Solution {
    public:
        string pushDominoes(string dominoes) {
            dominoes = 'L' + dominoes + 'R';
            int len = dominoes.length();
            string res = "";
            
            for (int i = 0, j = 1; j < len; ++j) {
                if (dominoes[j] == '.') continue;
                int mid = j - i - 1;
                if (i > 0) res += dominoes[i];
                if (dominoes[i] == dominoes[j]) 
                    res += string(mid, dominoes[i]);
                else if (dominoes[i] == 'L' && dominoes[j] == 'R')
                    res += string(mid, '.');
                else
                    res += string(mid/2, 'R') + string(mid%2, '.') + string(mid/2, 'L');
                i = j;
            }
            
            return res;
        }
    };
    

      

    Analysis:

    we define two pointers which represent the last and the current dominoes we pushed. There are four situations:

    1. L.....L: all dominoes will be pushed to left.

    2. R....R: all dominoes will be pushed to right.

    3. L....R: all dominoes won't be pushed to right or left.

    4. R....L: the left half dominoes will be pushed to right and the right half will pushed to left. if the number of dominoes is odd, the middle position will be a '.'.

    Reference:

    https://leetcode.com/problems/push-dominoes/discuss/132332/C%2B%2BJavaPython-Two-Pointers

    永远渴望,大智若愚(stay hungry, stay foolish)
  • 相关阅读:
    【转】js 获取浏览器高度和宽度值(多浏览器)
    Css相册
    微信公众号开发笔记2-自定义菜单
    微信公众号开发笔记1-获取Access Token
    【转】CSS选择器笔记
    【转】CSS浮动(float,clear)通俗讲解
    高云的jQuery源码分析笔记
    经典闭包例子详解
    执行控制——节流模式
    图片上下左右的无缝滚动的实现
  • 原文地址:https://www.cnblogs.com/h-hkai/p/10580952.html
Copyright © 2011-2022 走看看