# 002024-Maximize-the-Confusion-of-an-Exam

### Problem

<https://leetcode.com/problems/maximize-the-confusion-of-an-exam/description/>

A teacher is writing a test with n true/false questions, with 'T' denoting true and 'F' denoting false. He wants to confuse the students by maximizing the number of consecutive questions with the same answer (multiple trues or multiple falses in a row).

You are given a string answerKey, where answerKey\[i] is the original answer to the ith question. In addition, you are given an integer k, the maximum number of times you may perform the following operation:

Change the answer key for any question to 'T' or 'F' (i.e., set answerKey\[i] to 'T' or 'F'). Return the maximum number of consecutive 'T's or 'F's in the answer key after performing the operation at most k times.

Example 1:

Input: answerKey = "TTFF", k = 2 Output: 4 Explanation: We can replace both the 'F's with 'T's to make answerKey = "TTTT". There are four consecutive 'T's.

Example 2:

Input: answerKey = "TFFT", k = 1 Output: 3 Explanation: We can replace the first 'T' with an 'F' to make answerKey = "FFFT". Alternatively, we can replace the second 'T' with an 'F' to make answerKey = "TFFF". In both cases, there are three consecutive 'F's.

Example 3:

Input: answerKey = "TTFTTFTT", k = 1 Output: 5 Explanation: We can replace the first 'F' to make answerKey = "TTTTTFTT" Alternatively, we can replace the second 'F' to make answerKey = "TTFTTTTT". In both cases, there are five consecutive 'T's.

Constraints:

n == answerKey.length 1 <= n <= 5 \* 104 answerKey\[i] is either 'T' or 'F' 1 <= k <= n

### Solution

```python
class Solution:
    def maxConsecutiveAnswers(self, answerKey: str, k: int) -> int:
        max_freq, left, right = 0, 0, 0 
        cnt = collections.Counter()
        while right < len(answerKey):
            cnt[answerKey[right]] += 1
            # print("before left -----", cnt)
            max_freq = max(max_freq, cnt[answerKey[right]])

            if right-left+1 > max_freq + k:
                cnt[answerKey[left]] -= 1
                left += 1
            right += 1
            # print("after left --- ", cnt)

        return len(answerKey) - left
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://snowan.gitbook.io/study-notes/leetcode/python/002024-maximize-the-confusion-of-an-exam.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
