1035. Uncrossed Lines
Previous1011. Capacity To Ship Packages Within D DaysNext1074. Number of Submatrices That Sum to Target
Last updated
Last updated
Input: A = [1,4,2], B = [1,2,4]
Output: 2
Explanation: We can draw 2 uncrossed lines as in the diagram.
We cannot draw 3 uncrossed lines, because the line from A[1]=4 to B[2]=4 will intersect the line from A[2]=2 to B[1]=2.Input: A = [2,5,1,2,5], B = [10,5,2,1,5,2]
Output: 3func maxUncrossedLines(nums1 []int, nums2 []int) int {
dp := make([][]int, len(nums1)+1)
for i := range dp {
dp[i] = make([]int, len(nums2)+1)
}
for i := 1; i <= len(nums1); i++ {
for j := 1; j <= len(nums2); j++ {
if nums1[i-1] == nums2[j-1] {
dp[i][j] = 1 + dp[i-1][j-1]
} else {
dp[i][j] = max(dp[i][j-1], dp[i-1][j])
}
}
}
return dp[len(nums1)][len(nums2)]
}
func max(a, b int) int {
if a > b {
return a
}
return b
}