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

刚出的题,没人写,我来写写看。

'L'代表往左推, 'R'代表往右推,推同时进行。

思路:用idx记录最近出现的R或L,记录出现R后往右推的个数,每次遇到L回填'L',之前如果是L,从idx开始全部填充为L,之前如果是R,则从idx开始到i结束的中段开始填充L。idx初始化为-1。

代码:

class Solution {
public:
	string pushDominoes(string dominoes) {
		bool with_right = false;
		int right_cnt = 0, idx = -1;
		for (int i = 0; i<dominoes.size(); ++i) {
			if (dominoes[i] == 'R') {
				with_right = true;
				right_cnt = 0;
				idx = i;
			}
			else if (dominoes[i] == 'L') {
				std::fill(dominoes.begin() + idx + (right_cnt / 2)+1, dominoes.begin() + i, 'L');
				if(right_cnt % 2 == 1)dominoes[idx + right_cnt / 2 + 1] = '.';
				idx = i, right_cnt = 0, with_right = false;
			}
			else if (with_right == true) {
				++right_cnt;
				dominoes[i] = 'R';
			}
		}
		return dominoes;
	}
};



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值