mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
58 lines
2.4 KiB
HTML
58 lines
2.4 KiB
HTML
<p>给你一个下标从 <strong>0</strong> 开始的字符串数组 <code>words</code> ,数组的长度为 <code>n</code> ,且包含下标从 <strong>0</strong> 开始的若干字符串。</p>
|
||
|
||
<p>你可以执行以下操作 <strong>任意 </strong>次数(<strong>包括零次</strong>):</p>
|
||
|
||
<ul>
|
||
<li>选择整数<code>i</code>、<code>j</code>、<code>x</code>和<code>y</code>,满足<code>0 <= i, j < n</code>,<code>0 <= x < words[i].length</code>,<code>0 <= y < words[j].length</code>,<strong>交换 </strong>字符 <code>words[i][x]</code> 和 <code>words[j][y]</code> 。</li>
|
||
</ul>
|
||
|
||
<p>返回一个整数,表示在执行一些操作后,<code>words</code> 中可以包含的回文字符串的 <strong>最大 </strong>数量。</p>
|
||
|
||
<p><strong>注意:</strong>在操作过程中,<code>i</code> 和 <code>j</code> 可以相等。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong class="example">示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>words = ["abbb","ba","aa"]
|
||
<strong>输出:</strong>3
|
||
<strong>解释:</strong>在这个例子中,获得最多回文字符串的一种方式是:
|
||
选择 i = 0, j = 1, x = 0, y = 0,交换 words[0][0] 和 words[1][0] 。words 变成了 ["bbbb","aa","aa"] 。
|
||
words 中的所有字符串都是回文。
|
||
因此,可实现的回文字符串的最大数量是 3 。
|
||
</pre>
|
||
|
||
<p><strong class="example">示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>words = ["abc","ab"]
|
||
<strong>输出:</strong>2
|
||
<strong>解释:</strong>在这个例子中,获得最多回文字符串的一种方式是:
|
||
选择 i = 0, j = 1, x = 1, y = 0,交换 words[0][1] 和 words[1][0] 。words 变成了 ["aac","bb"] 。
|
||
选择 i = 0, j = 0, x = 1, y = 2,交换 words[0][1] 和 words[0][2] 。words 变成了 ["aca","bb"] 。
|
||
两个字符串都是回文 。
|
||
因此,可实现的回文字符串的最大数量是 2。
|
||
</pre>
|
||
|
||
<p><strong class="example">示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>words = ["cd","ef","a"]
|
||
<strong>输出:</strong>1
|
||
<strong>解释:</strong>在这个例子中,没有必要执行任何操作。
|
||
words 中有一个回文 "a" 。
|
||
可以证明,在执行任何次数操作后,无法得到更多回文。
|
||
因此,答案是 1 。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= words.length <= 1000</code></li>
|
||
<li><code>1 <= words[i].length <= 100</code></li>
|
||
<li><code>words[i]</code> 仅由小写英文字母组成。</li>
|
||
</ul>
|