-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2337.go
83 lines (75 loc) · 2.83 KB
/
2337.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Source: https://leetcode.com/problems/move-pieces-to-obtain-a-string
// Title: Move Pieces to Obtain a String
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// You are given two strings `start` and `target`, both of length `n`. Each string consists **only** of the characters `'L'`, `'R'`, and `'_'` where:
//
// - The characters `'L'` and `'R'` represent pieces, where a piece `'L'` can move to the **left** only if there is a **blank** space directly to its left, and a piece `'R'` can move to the **right** only if there is a **blank** space directly to its right.
// - The character `'_'` represents a blank space that can be occupied by **any** of the `'L'` or `'R'` pieces.
//
// Return `true` if it is possible to obtain the string `target` by moving the pieces of the string `start` **any** number of times. Otherwise, return `false`.
//
// **Example 1:**
//
// ```
// Input: start = "_L__R__R_", target = "L______RR"
// Output: true
// Explanation: We can obtain the string target from start by doing the following moves:
// - Move the first piece one step to the left, start becomes equal to "**L** ___R__R_".
// - Move the last piece one step to the right, start becomes equal to "L___R___**R** ".
// - Move the second piece three steps to the right, start becomes equal to "L______**R** R".
// Since it is possible to get the string target from start, we return true.
// ```
//
// **Example 2:**
//
// ```
// Input: start = "R_L_", target = "__LR"
// Output: false
// Explanation: The 'R' piece in the string start can move one step to the right to obtain "_**R** L_".
// After that, no pieces can move anymore, so it is impossible to obtain the string target from start.
// ```
//
// **Example 3:**
//
// ```
// Input: start = "_R", target = "R_"
// Output: false
// Explanation: The piece in the string start can move only to the right, so it is impossible to obtain the string target from start.```
//
// **Constraints:**
//
// - `n == start.length == target.length`
// - `1 <= n <= 10^5`
// - `start` and `target` consist of the characters `'L'`, `'R'`, and `'_'`.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
func canChange(start string, target string) bool {
n := len(start)
for i, j := 0, 0; i < n || j < n; i, j = i+1, j+1 {
for i < n && start[i] == '_' {
i++
}
for j < n && target[j] == '_' {
j++
}
if i == n || j == n {
return i == n && j == n
}
// Not same piece
if start[i] != target[j] {
return false
}
// L piece can't go right
if start[i] == 'L' && i < j {
return false
}
// R piece can't go left
if start[i] == 'R' && i > j {
return false
}
}
return true
}