mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
44 lines
2.0 KiB
HTML
44 lines
2.0 KiB
HTML
<p>You are given two strings, <code>word1</code> and <code>word2</code>. You want to construct a string in the following manner:</p>
|
|
|
|
<ul>
|
|
<li>Choose some <strong>non-empty</strong> subsequence <code>subsequence1</code> from <code>word1</code>.</li>
|
|
<li>Choose some <strong>non-empty</strong> subsequence <code>subsequence2</code> from <code>word2</code>.</li>
|
|
<li>Concatenate the subsequences: <code>subsequence1 + subsequence2</code>, to make the string.</li>
|
|
</ul>
|
|
|
|
<p>Return <em>the <strong>length</strong> of the longest <strong>palindrome</strong> that can be constructed in the described manner. </em>If no palindromes can be constructed, return <code>0</code>.</p>
|
|
|
|
<p>A <strong>subsequence</strong> of a string <code>s</code> is a string that can be made by deleting some (possibly none) characters from <code>s</code> without changing the order of the remaining characters.</p>
|
|
|
|
<p>A <strong>palindrome</strong> is a string that reads the same forward as well as backward.</p>
|
|
|
|
<p> </p>
|
|
<p><strong>Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> word1 = "cacb", word2 = "cbba"
|
|
<strong>Output:</strong> 5
|
|
<strong>Explanation:</strong> Choose "ab" from word1 and "cba" from word2 to make "abcba", which is a palindrome.</pre>
|
|
|
|
<p><strong>Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> word1 = "ab", word2 = "ab"
|
|
<strong>Output:</strong> 3
|
|
<strong>Explanation:</strong> Choose "ab" from word1 and "a" from word2 to make "aba", which is a palindrome.</pre>
|
|
|
|
<p><strong>Example 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> word1 = "aa", word2 = "bb"
|
|
<strong>Output:</strong> 0
|
|
<strong>Explanation:</strong> You cannot construct a palindrome from the described method, so return 0.</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= word1.length, word2.length <= 1000</code></li>
|
|
<li><code>word1</code> and <code>word2</code> consist of lowercase English letters.</li>
|
|
</ul>
|