1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/考试的最大困扰度 [maximize-the-confusion-of-an-exam].html

52 lines
2.4 KiB
HTML
Raw Normal View History

2022-03-27 20:38:29 +08:00
<p>一位老师正在出一场由 <code>n</code>&nbsp;道判断题构成的考试,每道题的答案为 true (用 <code><span style="">'T'</span></code> 表示)或者 false (用 <code>'F'</code>&nbsp;表示)。老师想增加学生对自己做出答案的不确定性,方法是&nbsp;<strong>最大化&nbsp;</strong><strong>连续相同</strong>&nbsp;结果的题数。(也就是连续出现 true 或者连续出现 false</p>
<p>给你一个字符串&nbsp;<code>answerKey</code>&nbsp;,其中&nbsp;<code>answerKey[i]</code>&nbsp;是第 <code>i</code>&nbsp;个问题的正确结果。除此以外,还给你一个整数 <code>k</code>&nbsp;,表示你能进行以下操作的最多次数:</p>
<ul>
<li>每次操作中,将问题的正确答案改为&nbsp;<code>'T'</code> 或者&nbsp;<code>'F'</code>&nbsp;(也就是将 <code>answerKey[i]</code> 改为&nbsp;<code>'T'</code>&nbsp;或者&nbsp;<code>'F'</code>&nbsp;)。</li>
</ul>
<p>请你返回在不超过 <code>k</code>&nbsp;次操作的情况下,<strong>最大</strong>&nbsp;连续 <code>'T'</code>&nbsp;或者 <code>'F'</code>&nbsp;的数目。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<b>输入:</b>answerKey = "TTFF", k = 2
<b>输出:</b>4
<b>解释:</b>我们可以将两个 'F' 都变为 'T' ,得到 answerKey = "<em><strong>TTTT</strong></em>" 。
总共有四个连续的 'T' 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<b>输入:</b>answerKey = "TFFT", k = 1
<b>输出:</b>3
<b>解释:</b>我们可以将最前面的 'T' 换成 'F' ,得到 answerKey = "<em><strong>FFF</strong></em>T" 。
或者,我们可以将第二个 'T' 换成 'F' ,得到 answerKey = "T<em><strong>FFF</strong></em>" 。
两种情况下,都有三个连续的 'F' 。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<b>输入:</b>answerKey = "TTFTTFTT", k = 1
<b>输出:</b>5
<b>解释:</b>我们可以将第一个 'F' 换成 'T' ,得到 answerKey = "<em><strong>TTTTT</strong></em>FTT" 。
或者我们可以将第二个 'F' 换成 'T' ,得到 answerKey = "TTF<em><strong>TTTTT</strong></em>" 。
两种情况下,都有五个连续的 'T' 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>n == answerKey.length</code></li>
<li><code>1 &lt;= n &lt;= 5 * 10<sup>4</sup></code></li>
<li><code>answerKey[i]</code>&nbsp;要么是&nbsp;<code>'T'</code> ,要么是&nbsp;<code>'F'</code></li>
<li><code>1 &lt;= k &lt;= n</code></li>
</ul>