mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
49 lines
2.4 KiB
HTML
49 lines
2.4 KiB
HTML
<p>给你两个字符串 <code>start</code> 和 <code>target</code> ,长度均为 <code>n</code> 。每个字符串 <strong>仅</strong> 由字符 <code>'L'</code>、<code>'R'</code> 和 <code>'_'</code> 组成,其中:</p>
|
||
|
||
<ul>
|
||
<li>字符 <code>'L'</code> 和 <code>'R'</code> 表示片段,其中片段 <code>'L'</code> 只有在其左侧直接存在一个 <strong>空位</strong> 时才能向 <strong>左</strong> 移动,而片段 <code>'R'</code> 只有在其右侧直接存在一个 <strong>空位</strong> 时才能向 <strong>右</strong> 移动。</li>
|
||
<li>字符 <code>'_'</code> 表示可以被 <strong>任意</strong> <code>'L'</code> 或 <code>'R'</code> 片段占据的空位。</li>
|
||
</ul>
|
||
|
||
<p>如果在移动字符串 <code>start</code> 中的片段任意次之后可以得到字符串 <code>target</code> ,返回 <code>true</code> ;否则,返回 <code>false</code> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>start = "_L__R__R_", target = "L______RR"
|
||
<strong>输出:</strong>true
|
||
<strong>解释:</strong>可以从字符串 start 获得 target ,需要进行下面的移动:
|
||
- 将第一个片段向左移动一步,字符串现在变为 "<strong>L</strong>___R__R_" 。
|
||
- 将最后一个片段向右移动一步,字符串现在变为 "L___R___<strong>R</strong>" 。
|
||
- 将第二个片段向右移动三步,字符串现在变为 "L______<strong>R</strong>R" 。
|
||
可以从字符串 start 得到 target ,所以返回 true 。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>start = "R_L_", target = "__LR"
|
||
<strong>输出:</strong>false
|
||
<strong>解释:</strong>字符串 start 中的 'R' 片段可以向右移动一步得到 "_<strong>R</strong>L_" 。
|
||
但是,在这一步之后,不存在可以移动的片段,所以无法从字符串 start 得到 target 。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>start = "_R", target = "R_"
|
||
<strong>输出:</strong>false
|
||
<strong>解释:</strong>字符串 start 中的片段只能向右移动,所以无法从字符串 start 得到 target 。</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>n == start.length == target.length</code></li>
|
||
<li><code>1 <= n <= 10<sup>5</sup></code></li>
|
||
<li><code>start</code> 和 <code>target</code> 由字符 <code>'L'</code>、<code>'R'</code> 和 <code>'_'</code> 组成</li>
|
||
</ul>
|