mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 19:18:14 +08:00
53 lines
1.9 KiB
HTML
53 lines
1.9 KiB
HTML
|
<p>你会得到一个字符串 <code>text</code> 。你应该把它分成 <code>k</code> 个子字符串 <code>(subtext1, subtext2,…, subtextk)</code> ,要求满足:</p>
|
|||
|
|
|||
|
<ul>
|
|||
|
<li><code>subtext<sub>i</sub></code><sub> </sub>是非空字符串</li>
|
|||
|
<li>所有子字符串的连接等于 <code>text</code> ( 即<code>subtext<sub>1</sub> + subtext<sub>2</sub> + ... + subtext<sub>k</sub> == text</code> )</li>
|
|||
|
<li><code>subtext<sub>i</sub> == subtext<sub>k - i + 1</sub></code><sub> </sub>表示所有 <font color="#c7254e"><font face="Menlo, Monaco, Consolas, Courier New, monospace"><span style="font-size:12.6px"><span style="background-color:#f9f2f4">i</span></span></font></font> 的有效值( 即 <code>1 <= i <= k</code> )</li>
|
|||
|
</ul>
|
|||
|
|
|||
|
<p>返回<code>k</code>可能最大值。</p>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>示例 1:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>text = "ghiabcdefhelloadamhelloabcdefghi"
|
|||
|
<strong>输出:</strong>7
|
|||
|
<strong>解释:</strong>我们可以把字符串拆分成 "(ghi)(abcdef)(hello)(adam)(hello)(abcdef)(ghi)"。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 2:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>text = "merchant"
|
|||
|
<strong>输出:</strong>1
|
|||
|
<strong>解释:</strong>我们可以把字符串拆分成 "(merchant)"。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 3:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>text = "antaprezatepzapreanta"
|
|||
|
<strong>输出:</strong>11
|
|||
|
<strong>解释:</strong>我们可以把字符串拆分成 "(a)(nt)(a)(pre)(za)(tpe)(za)(pre)(a)(nt)(a)"。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p><strong>示例 4:</strong></p>
|
|||
|
|
|||
|
<pre>
|
|||
|
<strong>输入:</strong>text = "aaa"
|
|||
|
<strong>输出:</strong>3
|
|||
|
<strong>解释:</strong>我们可以把字符串拆分成 "(a)(a)(a)"。
|
|||
|
</pre>
|
|||
|
|
|||
|
<p> </p>
|
|||
|
|
|||
|
<p><strong>提示:</strong></p>
|
|||
|
|
|||
|
<ul>
|
|||
|
<li><code>1 <= text.length <= 1000</code></li>
|
|||
|
<li><code>text</code> 仅由小写英文字符组成</li>
|
|||
|
</ul>
|