Skip to content

Commit b62b605

Browse files
committed
feat: add solutions to lc problem: No.0467
- No.0467.Unique Substrings in Wraparound String
1 parent cf04eb6 commit b62b605

File tree

4 files changed

+129
-0
lines changed

4 files changed

+129
-0
lines changed

solution/0400-0499/0467.Unique Substrings in Wraparound String/README.md

+49
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@
5353

5454
<!-- 这里可写通用的实现逻辑 -->
5555

56+
题目导读,为什么示例 2 只有两个字串?
57+
58+
> 成为字串的一个标准,需要是连续的,`a``c` 之间少了一个 `b`,所以不能算一个子字符串
59+
5660
<!-- tabs:start -->
5761

5862
### **Python3**
@@ -71,6 +75,51 @@
7175

7276
```
7377

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+
74123
### **...**
75124

76125
```

solution/0400-0499/0467.Unique Substrings in Wraparound String/README_EN.md

+45
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,51 @@ Explanation: Only the substring &quot;a&quot; of p is in s.
6161

6262
```
6363

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+
64109
### **...**
65110

66111
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

0 commit comments

Comments
 (0)