[Swift]LeetCode1027. 最長等差數列 | Longest Arithmetic Sequence

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公衆號:山青詠芝(shanqingyongzhi)
➤博客園地址:山青詠芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址: http://www.javashuo.com/article/p-sgbdgwef-md.html 
➤若是連接不是山青詠芝的博客園地址,則多是爬取做者的文章。
➤原文已修改更新!強烈建議點擊原文地址閱讀!支持做者!支持原創!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★html

Given an array A of integers, return the length of the longest arithmetic subsequence in A.git

Recall that a subsequence of A is a list A[i_1], A[i_2], ..., A[i_k]with 0 <= i_1 < i_2 < ... < i_k <= A.length - 1, and that a sequence B is arithmetic if B[i+1] - B[i] are all the same value (for 0 <= i < B.length - 1).github

Example 1:數組

Input: [3,6,9,12]
Output: 4 Explanation: The whole array is an arithmetic sequence with steps of length = 3. 

Example 2:微信

Input: [9,4,7,2,10]
Output: 3 Explanation: The longest arithmetic subsequence is [4,7,10]. 

Example 3:spa

Input: [20,1,15,3,10,5,8]
Output: 4 Explanation: The longest arithmetic subsequence is [20,15,10,5].

Note:code

  1. 2 <= A.length <= 2000
  2. 0 <= A[i] <= 10000

給定一個整數數組 A,返回 A 中最長等差子序列的長度。htm

回想一下,A 的子序列是列表 A[i_1], A[i_2], ..., A[i_k] 其中 0 <= i_1 < i_2 < ... < i_k <= A.length - 1。而且若是 B[i+1] - B[i]0 <= i < B.length - 1) 的值都相同,那麼序列 B 是等差的。blog

示例 1:get

輸入:[3,6,9,12]
輸出:4
解釋: 
整個數組是公差爲 3 的等差數列。

示例 2:

輸入:[9,4,7,2,10]
輸出:3
解釋:
最長的等差子序列是 [4,7,10]。

示例 3:

輸入:[20,1,15,3,10,5,8]
輸出:4
解釋:
最長的等差子序列是 [20,15,10,5]。

提示:

  1. 2 <= A.length <= 2000
  2. 0 <= A[i] <= 10000

Runtime: 1424 ms
Memory Usage: 75.9 MB
 1 class Solution {
 2     func longestArithSeqLength(_ A: [Int]) -> Int {
 3         var n:Int = A.count
 4         var map:[[Int:Int]] = [[Int:Int]](repeating:[Int:Int](),count:n)
 5         var longest:Int = 1
 6         for i in 1..<n
 7         {
 8             for j in 0..<i
 9             {
10                 var d:Int = A[i] - A[j]
11                 var l:Int = map[j][d,default:1] + 1
12                 map[i][d] = max(l, map[i][d,default:1])
13                 longest = max(longest, l)
14             }
15         }
16         return longest       
17     }
18 }

2688ms
 1 class Solution {
 2     func longestArithSeqLength(_ A: [Int]) -> Int {
 3         if A.count <= 2{
 4             return A.count
 5         }
 6         
 7         var dp = [Int:[Int:Int]]()
 8         var longest = 0
 9         for base in 0..<A.count{
10             let baseVal = A[base]
11             for current in base+1..<A.count{
12                 let currentVal = A[current]
13                 let diff = currentVal - baseVal
14                 
15                 dp[current, default: [Int:Int]()][diff] = max(
16                                      dp[base, default: [Int:Int]()][diff, default: 1]+1, 
17                                      dp[current, default: [Int:Int]()][diff, default: 1])
18                 
19                 longest = max(longest, dp[current]![diff]!)
20             }
21         }
22         
23         return longest
24     }
25 }
相關文章
相關標籤/搜索