Skip to content

Commit 6ff429f

Browse files
committed
一刷718
1 parent d863358 commit 6ff429f

10 files changed

+94
-26
lines changed

README.adoc

+8-8
Original file line numberDiff line numberDiff line change
@@ -5051,14 +5051,14 @@ TIP: **公众号的微信号是: `jikerizhi`**。__因为众所周知的原因
50515051
//|{doc_base_url}/0717-1-bit-and-2-bit-characters.adoc[题解]
50525052
//|Easy
50535053
//|
5054-
//
5055-
//|{counter:codes}
5056-
//|{leetcode_base_url}/maximum-length-of-repeated-subarray/[718. Maximum Length of Repeated Subarray^]
5057-
//|{source_base_url}/_0718_MaximumLengthOfRepeatedSubarray.java[Java]
5058-
//|{doc_base_url}/0718-maximum-length-of-repeated-subarray.adoc[题解]
5059-
//|Medium
5060-
//|
5061-
//
5054+
5055+
|{counter:codes}
5056+
|{leetcode_base_url}/maximum-length-of-repeated-subarray/[718. Maximum Length of Repeated Subarray^]
5057+
|{source_base_url}/_0718_MaximumLengthOfRepeatedSubarray.java[Java]
5058+
|{doc_base_url}/0718-maximum-length-of-repeated-subarray.adoc[题解]
5059+
|Medium
5060+
|
5061+
50625062
//|{counter:codes}
50635063
//|{leetcode_base_url}/find-k-th-smallest-pair-distance/[719. Find K-th Smallest Pair Distance^]
50645064
//|{source_base_url}/_0719_FindKThSmallestPairDistance.java[Java]

docs/0000-26-dp-5-longest-common-substring.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
. xref:0300-longest-increasing-subsequence.adoc[300. Longest Increasing Subsequence]
99
. xref:1143-longest-common-subsequence.adoc[1143. Longest Common Subsequence]
1010
. xref:1092-shortest-common-supersequence.adoc[1092. Shortest Common Supersequence]
11+
. xref:0718-maximum-length-of-repeated-subarray.adoc[718. 最长重复子数组]
1112

1213
Longest Common Substring,最长相同子串
1314

Original file line numberDiff line numberDiff line change
@@ -1,38 +1,77 @@
11
[#0718-maximum-length-of-repeated-subarray]
2-
= 718. Maximum Length of Repeated Subarray
2+
= 718. 最长重复子数组
33

4-
{leetcode}/problems/maximum-length-of-repeated-subarray/[LeetCode - Maximum Length of Repeated Subarray^]
4+
https://leetcode.cn/problems/maximum-length-of-repeated-subarray/[LeetCode - 718. 最长重复子数组 ^]
55

6-
Given two integer arrays `A` and `B`, return the maximum length of an subarray that appears in both arrays.
6+
给两个整数数组 `+nums1+``+nums2+` ,返回 _两个数组中 *公共的*
7+
、长度最长的子数组的长度 _。
78
8-
*Example 1:*
9+
*示例 1:*
910
10-
[subs="verbatim,quotes,macros"]
11-
----
12-
*Input:*
13-
A: [1,2,3,2,1]
14-
B: [3,2,1,4,7]
15-
*Output:* 3
16-
*Explanation:*
17-
The repeated subarray with maximum length is [3, 2, 1].
18-
----
11+
....
12+
输入:nums1 = [1,2,3,2,1], nums2 = [3,2,1,4,7]
13+
输出:3
14+
解释:长度最长的公共子数组是 [3,2,1] 。
15+
....
16+
17+
*示例 2:*
18+
19+
....
20+
输入:nums1 = [0,0,0,0,0], nums2 = [0,0,0,0,0]
21+
输出:5
22+
....
1923
2024
2125
22-
*Note:*
26+
*提示:*
2327
28+
* `+1 <= nums1.length, nums2.length <= 1000+`
29+
* `+0 <= nums1[i], nums2[i] <= 100+`
2430
25-
. 1 <= len(A), len(B) <= 1000
26-
. 0 <= A[i], B[i] < 100
2731
32+
== 思路分析
2833
29-
34+
动态规划:
35+
36+
image::images/0718-01.png[{image_attr}]
37+
38+
image::images/0718-02.png[{image_attr}]
39+
40+
image::images/0718-03.png[{image_attr}]
3041
3142
43+
滑动窗口的解法非常妙!
44+
45+
image:images/0718-01.gif[{image_attr}]
46+
3247
3348
[[src-0718]]
49+
[tabs]
50+
====
51+
一刷::
52+
+
53+
--
3454
[{java_src_attr}]
3555
----
3656
include::{sourcedir}/_0718_MaximumLengthOfRepeatedSubarray.java[tag=answer]
3757
----
58+
--
59+
60+
// 二刷::
61+
// +
62+
// --
63+
// [{java_src_attr}]
64+
// ----
65+
// include::{sourcedir}/_0718_MaximumLengthOfRepeatedSubarray_2.java[tag=answer]
66+
// ----
67+
// --
68+
====
69+
70+
71+
== 参考资料
72+
73+
. https://leetcode.cn/problems/maximum-length-of-repeated-subarray/solutions/310099/zui-chang-zhong-fu-zi-shu-zu-by-leetcode-solution/[718. 最长重复子数组 - 官方题解^]
74+
. https://leetcode.cn/problems/maximum-length-of-repeated-subarray/solutions/28583/wu-li-jie-fa-by-stg-2/[718. 最长重复子数组 - 滑动窗口解法^]
75+
. https://leetcode.cn/problems/maximum-length-of-repeated-subarray/solutions/310509/zhe-yao-jie-shi-ken-ding-jiu-dong-liao-by-hyj8/[718. 最长重复子数组 -「手画图解」动态规划 思路解析^]
76+
3877

docs/images/0718-01.gif

2.22 MB
Loading

docs/images/0718-01.png

347 KB
Loading

docs/images/0718-02.png

167 KB
Loading

docs/images/0718-03.png

240 KB
Loading

docs/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1510,7 +1510,7 @@ include::0714-best-time-to-buy-and-sell-stock-with-transaction-fee.adoc[leveloff
15101510

15111511
// include::0717-1-bit-and-2-bit-characters.adoc[leveloffset=+1]
15121512

1513-
// include::0718-maximum-length-of-repeated-subarray.adoc[leveloffset=+1]
1513+
include::0718-maximum-length-of-repeated-subarray.adoc[leveloffset=+1]
15141514

15151515
// include::0719-find-k-th-smallest-pair-distance.adoc[leveloffset=+1]
15161516

logbook/202406.adoc

+5
Original file line numberDiff line numberDiff line change
@@ -914,6 +914,11 @@
914914
|{doc_base_url}/0072-edit-distance.adoc[题解]
915915
|❌ 动态规划,看答案秒懂,自己想不出来!
916916
917+
|{counter:codes}
918+
|{leetcode_base_url}/maximum-length-of-repeated-subarray/[718. Maximum Length of Repeated Subarray^]
919+
|{doc_base_url}/0718-maximum-length-of-repeated-subarray.adoc[题解]
920+
|❌ 动态规划。滑动窗口的解法也很妙!
921+
917922
918923
|===
919924
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.diguage.algo.leetcode;
2+
3+
public class _0718_MaximumLengthOfRepeatedSubarray {
4+
// tag::answer[]
5+
6+
/**
7+
* @author D瓜哥 · https://www.diguage.com
8+
* @since 2024-09-30 20:18:46
9+
*/
10+
public int findLength(int[] nums1, int[] nums2) {
11+
int n = nums1.length, m = nums2.length;
12+
int[][] dp = new int[n + 1][m + 1];
13+
int result = 0;
14+
for (int i = n - 1; i >= 0; i--) {
15+
for (int j = m - 1; j >= 0; j--) {
16+
dp[i][j] = nums1[i] == nums2[j] ? dp[i + 1][j + 1] + 1 : 0;
17+
result = Math.max(result, dp[i][j]);
18+
}
19+
}
20+
return result;
21+
}
22+
// end::answer[]
23+
}

0 commit comments

Comments
 (0)