here 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:
0 <= N <= 10^5
- String
dominoes
contains only'L
‘,'R'
and'.'
Solution: Simulation
Simulate the push process, record the steps from L and R for each domino.
steps(L) == steps(R) => “.”
steps(L) < steps(R) => “L”
steps(L) > steps(R) => “R”
Time complexity: O(n)
Space complexity: O(n)
C++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
// Author: Huahua, running time: 24 ms, 15.2 MB class Solution { public: string pushDominoes(string D) { const int n = static_cast<int>(D.size()); vector<int> L(n, INT_MAX), R(n, INT_MAX); for (int i = 0; i < n; ++i) if (D[i] == 'L') { L[i] = 0; for (int j = i - 1; j >= 0 && D[j] == '.'; --j) L[j] = L[j + 1] + 1; } else if (D[i] == 'R') { R[i] = 0; for (int j = i + 1; j < n && D[j] == '.'; ++j) R[j] = R[j - 1] + 1; } for (int i = 0; i < n; ++i) if (L[i] < R[i]) D[i] = 'L'; else if (L[i] > R[i]) D[i] = 'R'; return D; } }; |
请尊重作者的劳动成果,转载请注明出处!花花保留对文章/视频的所有权利。
如果您喜欢这篇文章/视频,欢迎您捐赠花花。
If you like my articles / videos, donations are welcome.
Be First to Comment