Given a list of strings, you need to find the longest uncommon subsequence among them. The longest uncommon subsequence is defined as the longest subsequence of one of these strings and this subsequence should not be any subsequence of the other strings.
A subsequence is a sequence that can be derived from one sequence by deleting some characters without changing the order of the remaining elements. Trivially, any string is a subsequence of itself and an empty string is a subsequence of any string.
The input will be a list of strings, and the output needs to be the length of the longest uncommon subsequence. If the longest uncommon subsequence doesn't exist, return -1.
Example 1:
Input: "aba", "cdc", "eae" Output: 3
Note:
- All the given strings' lengths will not exceed 10.
- The length of the given list will be in the range of [2, 50].
521. Longest Uncommon Subsequence I 的衍生題
想法如下
- 由 521 的經驗,只要長度最長,且沒有其他字串一樣長,那就會是答案。因此,先將字串根據長度,做降冪排列
- 從最長的字串開始檢查,只要當前這個字串,不是其餘字串的子字串,那就是答案了。這邊要特別注意的是子字串的定義,根據題目 aa 是 aba 的子字串,因為只要將 aba 裡面的 b 給刪除(兩個 a 的順序並沒有變),就可以組出 aa,所以檢查方式要特別寫
C++
Java
沒有留言:
張貼留言