File tree 4 files changed +129
-0
lines changed
solution/0400-0499/0467.Unique Substrings in Wraparound String
4 files changed +129
-0
lines changed Original file line number Diff line number Diff line change 53
53
54
54
<!-- 这里可写通用的实现逻辑 -->
55
55
56
+ 题目导读,为什么示例 2 只有两个字串?
57
+
58
+ > 成为字串的一个标准,需要是连续的,` a ` 与 ` c ` 之间少了一个 ` b ` ,所以不能算一个子字符串
59
+
56
60
<!-- tabs:start -->
57
61
58
62
### ** Python3**
71
75
72
76
```
73
77
78
+ ### ** TypeScript**
79
+
80
+ ``` ts
81
+ function findSubstringInWraproundString(p : string ): number {
82
+ const n = p .length ;
83
+ const dp = new Array (26 ).fill (0 );
84
+ let cur = 1 ;
85
+ dp [p .charCodeAt (0 ) - ' a' .charCodeAt (0 )] = 1 ;
86
+ for (let i = 1 ; i < n ; i ++ ) {
87
+ if ((p .charCodeAt (i ) - p .charCodeAt (i - 1 ) + 25 ) % 26 == 0 ) {
88
+ cur ++ ;
89
+ } else {
90
+ cur = 1 ;
91
+ }
92
+ const index = p .charCodeAt (i ) - ' a' .charCodeAt (0 );
93
+ dp [index ] = Math .max (dp [index ], cur );
94
+ }
95
+ return dp .reduce ((r , v ) => r + v );
96
+ }
97
+ ```
98
+
99
+ ### ** Rust**
100
+
101
+ ``` rust
102
+ impl Solution {
103
+ pub fn find_substring_in_wrapround_string (p : String ) -> i32 {
104
+ let n = p . len ();
105
+ let p = p . as_bytes ();
106
+ let mut dp = [0 ; 26 ];
107
+ let mut cur = 1 ;
108
+ dp [(p [0 ] - b 'a' ) as usize ] = 1 ;
109
+ for i in 1 .. n {
110
+ if (p [i ] - p [i - 1 ] + 25 ) % 26 == 0 {
111
+ cur += 1 ;
112
+ } else {
113
+ cur = 1 ;
114
+ }
115
+ let index = (p [i ] - b 'a' ) as usize ;
116
+ dp [index ] = dp [index ]. max (cur );
117
+ }
118
+ dp . into_iter (). sum ()
119
+ }
120
+ }
121
+ ```
122
+
74
123
### ** ...**
75
124
76
125
```
Original file line number Diff line number Diff line change @@ -61,6 +61,51 @@ Explanation: Only the substring "a" of p is in s.
61
61
62
62
```
63
63
64
+ ### ** TypeScript**
65
+
66
+ ``` ts
67
+ function findSubstringInWraproundString(p : string ): number {
68
+ const n = p .length ;
69
+ const dp = new Array (26 ).fill (0 );
70
+ let cur = 1 ;
71
+ dp [p .charCodeAt (0 ) - ' a' .charCodeAt (0 )] = 1 ;
72
+ for (let i = 1 ; i < n ; i ++ ) {
73
+ if ((p .charCodeAt (i ) - p .charCodeAt (i - 1 ) + 25 ) % 26 == 0 ) {
74
+ cur ++ ;
75
+ } else {
76
+ cur = 1 ;
77
+ }
78
+ const index = p .charCodeAt (i ) - ' a' .charCodeAt (0 );
79
+ dp [index ] = Math .max (dp [index ], cur );
80
+ }
81
+ return dp .reduce ((r , v ) => r + v );
82
+ }
83
+ ```
84
+
85
+ ### ** Rust**
86
+
87
+ ``` rust
88
+ impl Solution {
89
+ pub fn find_substring_in_wrapround_string (p : String ) -> i32 {
90
+ let n = p . len ();
91
+ let p = p . as_bytes ();
92
+ let mut dp = [0 ; 26 ];
93
+ let mut cur = 1 ;
94
+ dp [(p [0 ] - b 'a' ) as usize ] = 1 ;
95
+ for i in 1 .. n {
96
+ if (p [i ] - p [i - 1 ] + 25 ) % 26 == 0 {
97
+ cur += 1 ;
98
+ } else {
99
+ cur = 1 ;
100
+ }
101
+ let index = (p [i ] - b 'a' ) as usize ;
102
+ dp [index ] = dp [index ]. max (cur );
103
+ }
104
+ dp . into_iter (). sum ()
105
+ }
106
+ }
107
+ ```
108
+
64
109
### ** ...**
65
110
66
111
```
Original file line number Diff line number Diff line change
1
+ impl Solution {
2
+ pub fn find_substring_in_wrapround_string ( p : String ) -> i32 {
3
+ let n = p. len ( ) ;
4
+ let p = p. as_bytes ( ) ;
5
+ let mut dp = [ 0 ; 26 ] ;
6
+ let mut cur = 1 ;
7
+ dp[ ( p[ 0 ] - b'a' ) as usize ] = 1 ;
8
+ for i in 1 ..n {
9
+ if ( p[ i] - p[ i - 1 ] + 25 ) % 26 == 0 {
10
+ cur += 1 ;
11
+ } else {
12
+ cur = 1 ;
13
+ }
14
+ let index = ( p[ i] - b'a' ) as usize ;
15
+ dp[ index] = dp[ index] . max ( cur) ;
16
+ }
17
+ dp. into_iter ( ) . sum ( )
18
+ }
19
+ }
Original file line number Diff line number Diff line change
1
+ function findSubstringInWraproundString ( p : string ) : number {
2
+ const n = p . length ;
3
+ const dp = new Array ( 26 ) . fill ( 0 ) ;
4
+ let cur = 1 ;
5
+ dp [ p . charCodeAt ( 0 ) - 'a' . charCodeAt ( 0 ) ] = 1 ;
6
+ for ( let i = 1 ; i < n ; i ++ ) {
7
+ if ( ( p . charCodeAt ( i ) - p . charCodeAt ( i - 1 ) + 25 ) % 26 == 0 ) {
8
+ cur ++ ;
9
+ } else {
10
+ cur = 1 ;
11
+ }
12
+ const index = p . charCodeAt ( i ) - 'a' . charCodeAt ( 0 ) ;
13
+ dp [ index ] = Math . max ( dp [ index ] , cur ) ;
14
+ }
15
+ return dp . reduce ( ( r , v ) => r + v ) ;
16
+ }
You can’t perform that action at this time.
0 commit comments