Skip to content

Commit cfe971f

Browse files
authored
feat: add ts solution to lc problem: No.1983 (doocs#2449)
No.1983.Widest Pair of Indices With Equal Range Sum
1 parent 12e8bc7 commit cfe971f

File tree

3 files changed

+66
-2
lines changed

3 files changed

+66
-2
lines changed

solution/1900-1999/1983.Widest Pair of Indices With Equal Range Sum/README.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ i和j之间的距离是j - i + 1 = 1 - 1 + 1 = 1。
6868

6969
我们定义一个变量 $s$ 表示当前 $nums$ 的前缀和,用一个哈希表 $d$ 保存每个前缀和第一次出现的位置。初始时 $s = 0$, $d[0] = -1$。
7070

71-
接下来,我们遍历数组 $nums$ 中的每个元素 $x$,计算 $s$ 的值,然后检查哈希表中是否存在 $s$,如果哈希表存在 $s$,那么说明存在一个子数组 $nums[d[s]+1,..i]$,使得子数组的和为 $0$,我们更新答案为 $max(ans, i - d[s])$。否则,我们将 $s$ 的值加入哈希表中,表示 $s$ 第一次出现的位置为 $i$。
71+
接下来,我们遍历数组 $nums$ 中的每个元素 $x$,计算 $s$ 的值,然后检查哈希表中是否存在 $s$,如果哈希表存在 $s$,那么说明存在一个子数组 $nums[d[s]+1,..i]$,使得子数组的和为 $0$,我们更新答案为 $\max(ans, i - d[s])$。否则,我们将 $s$ 的值加入哈希表中,表示 $s$ 第一次出现的位置为 $i$。
7272

7373
遍历结束,即可得到最终的答案。
7474

@@ -148,6 +148,25 @@ func widestPairOfIndices(nums1 []int, nums2 []int) (ans int) {
148148
}
149149
```
150150

151+
```ts
152+
function widestPairOfIndices(nums1: number[], nums2: number[]): number {
153+
const d: Map<number, number> = new Map();
154+
d.set(0, -1);
155+
const n: number = nums1.length;
156+
let s: number = 0;
157+
let ans: number = 0;
158+
for (let i = 0; i < n; ++i) {
159+
s += nums1[i] - nums2[i];
160+
if (d.has(s)) {
161+
ans = Math.max(ans, i - (d.get(s) as number));
162+
} else {
163+
d.set(s, i);
164+
}
165+
}
166+
return ans;
167+
}
168+
```
169+
151170
<!-- tabs:end -->
152171

153172
<!-- end -->

solution/1900-1999/1983.Widest Pair of Indices With Equal Range Sum/README_EN.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,17 @@ There are no pairs of indices that meet the requirements.
5858

5959
## Solutions
6060

61-
### Solution 1
61+
### Solution 1: Prefix Sum + Hash Table
62+
63+
We observe that for any index pair $(i, j)$, if $nums1[i] + nums1[i+1] + ... + nums1[j] = nums2[i] + nums2[i+1] + ... + nums2[j]$, then $nums1[i] - nums2[i] + nums1[i+1] - nums2[i+1] + ... + nums1[j] - nums2[j] = 0$. If we subtract the corresponding elements of array $nums1$ and array $nums2$ to get a new array $nums$, the problem is transformed into finding the longest subarray in $nums$ such that the sum of the subarray is $0$. This can be solved using the prefix sum + hash table method.
64+
65+
We define a variable $s$ to represent the current prefix sum of $nums$, and use a hash table $d$ to store the first occurrence position of each prefix sum. Initially, $s = 0$ and $d[0] = -1$.
66+
67+
Next, we traverse each element $x$ in the array $nums$, calculate the value of $s$, and then check whether $s$ exists in the hash table. If $s$ exists in the hash table, it means that there is a subarray $nums[d[s]+1,..i]$ such that the sum of the subarray is $0$, and we update the answer to $\max(ans, i - d[s])$. Otherwise, we add the value of $s$ to the hash table, indicating that the first occurrence position of $s$ is $i$.
68+
69+
After the traversal, we can get the final answer.
70+
71+
The time complexity is $O(n)$ and the space complexity is $O(n)$, where $n$ is the length of the array $nums$.
6272

6373
<!-- tabs:start -->
6474

@@ -134,6 +144,25 @@ func widestPairOfIndices(nums1 []int, nums2 []int) (ans int) {
134144
}
135145
```
136146

147+
```ts
148+
function widestPairOfIndices(nums1: number[], nums2: number[]): number {
149+
const d: Map<number, number> = new Map();
150+
d.set(0, -1);
151+
const n: number = nums1.length;
152+
let s: number = 0;
153+
let ans: number = 0;
154+
for (let i = 0; i < n; ++i) {
155+
s += nums1[i] - nums2[i];
156+
if (d.has(s)) {
157+
ans = Math.max(ans, i - (d.get(s) as number));
158+
} else {
159+
d.set(s, i);
160+
}
161+
}
162+
return ans;
163+
}
164+
```
165+
137166
<!-- tabs:end -->
138167

139168
<!-- end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
function widestPairOfIndices(nums1: number[], nums2: number[]): number {
2+
const d: Map<number, number> = new Map();
3+
d.set(0, -1);
4+
const n: number = nums1.length;
5+
let s: number = 0;
6+
let ans: number = 0;
7+
for (let i = 0; i < n; ++i) {
8+
s += nums1[i] - nums2[i];
9+
if (d.has(s)) {
10+
ans = Math.max(ans, i - (d.get(s) as number));
11+
} else {
12+
d.set(s, i);
13+
}
14+
}
15+
return ans;
16+
}

0 commit comments

Comments
 (0)