58
58
59
59
<!-- 这里可写通用的实现逻辑 -->
60
60
61
- 这个题比较有意思,最后规律是左边向左的车辆可以出去,右边向右的车辆可以出去,中间不是 S 的都出不来。
61
+ - 去除前缀为 ` L ` 的字符;
62
+ - 去除后缀为 ` R ` 的字符;
63
+ - 剩余的字符串中,除了 ` S ` 以外的字符,都会贡献一次碰撞次数。
62
64
63
65
<!-- tabs:start -->
64
66
69
71
``` python
70
72
class Solution :
71
73
def countCollisions (self , directions : str ) -> int :
72
- l, r = 0 , len (directions)- 1
73
- while l <= r and directions[l] == ' L' :
74
- l += 1
75
- while l <= r and directions[r] == ' R' :
76
- r -= 1
77
- count = 0
78
- for i in range (l, r+ 1 ):
79
- count += directions[i] != ' S'
80
- return count
74
+ d = directions.lstrip(' L' ).rstrip(' R' )
75
+ return len (d) - d.count(' S' )
81
76
```
82
77
83
78
### ** Java**
@@ -87,25 +82,48 @@ class Solution:
87
82
``` java
88
83
class Solution {
89
84
public int countCollisions (String directions ) {
90
- int l = 0 , r = directions. length() - 1 , count = 0 ;
91
- while (l <= r && directions. substring(l, l + 1 ). equals(" L" )) {
92
- l++ ;
85
+ char [] ds = directions. toCharArray();
86
+ int n = ds. length;
87
+ int l = 0 ;
88
+ int r = n - 1 ;
89
+ while (l < n && ds[l] == ' L' ) {
90
+ ++ l;
93
91
}
94
- while (l <= r && directions . substring(r, r + 1 ) . equals( " R " ) ) {
95
- r -- ;
92
+ while (r >= 0 && ds[r] == ' R ' ) {
93
+ -- r ;
96
94
}
97
- for (int i = l; i <= r; i++ ) {
98
- if (! directions. substring(i, i + 1 ). equals(" S" )) count += 1 ;
95
+ int ans = 0 ;
96
+ for (int i = l; i <= r; ++ i) {
97
+ if (ds[i] != ' S' ) {
98
+ ++ ans;
99
+ }
99
100
}
100
- return count ;
101
+ return ans ;
101
102
}
102
103
}
103
104
```
104
105
105
106
### ** TypeScript**
106
107
107
108
``` ts
108
-
109
+ function countCollisions(directions : string ): number {
110
+ const n = directions .length ;
111
+ let l = 0 ,
112
+ r = n - 1 ;
113
+ while (l < n && directions [l ] == ' L' ) {
114
+ ++ l ;
115
+ }
116
+ while (r >= 0 && directions [r ] == ' R' ) {
117
+ -- r ;
118
+ }
119
+ let ans = 0 ;
120
+ for (let i = l ; i <= r ; ++ i ) {
121
+ if (directions [i ] != ' S' ) {
122
+ ++ ans ;
123
+ }
124
+ }
125
+ return ans ;
126
+ }
109
127
```
110
128
111
129
### ** C++**
@@ -130,4 +148,20 @@ public:
130
148
};
131
149
```
132
150
151
+ ### ** Go**
152
+
153
+ ``` go
154
+ func countCollisions (directions string ) int {
155
+ d := strings.TrimLeft (directions, " L" )
156
+ d = strings.TrimRight (d, " R" )
157
+ return len (d) - strings.Count (d, " S" )
158
+ }
159
+ ```
160
+
161
+ ### ** ...**
162
+
163
+ ```
164
+
165
+ ```
166
+
133
167
<!-- tabs:end -->
0 commit comments