返回介绍

solution / 2000-2099 / 2024.Maximize the Confusion of an Exam / README_EN

发布于 2024-06-17 01:03:11 字数 5912 浏览 0 评论 0 收藏 0

2024. 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

Solutions

Solution 1

class Solution:
  def maxConsecutiveAnswers(self, answerKey: str, k: int) -> int:
    def get(c, k):
      l = r = -1
      while r < len(answerKey) - 1:
        r += 1
        if answerKey[r] == c:
          k -= 1
        if k < 0:
          l += 1
          if answerKey[l] == c:
            k += 1
      return r - l

    return max(get('T', k), get('F', k))
class Solution {
  public int maxConsecutiveAnswers(String answerKey, int k) {
    return Math.max(get('T', k, answerKey), get('F', k, answerKey));
  }

  public int get(char c, int k, String answerKey) {
    int l = 0, r = 0;
    while (r < answerKey.length()) {
      if (answerKey.charAt(r++) == c) {
        --k;
      }
      if (k < 0 && answerKey.charAt(l++) == c) {
        ++k;
      }
    }
    return r - l;
  }
}
class Solution {
public:
  int maxConsecutiveAnswers(string answerKey, int k) {
    return max(get('T', k, answerKey), get('F', k, answerKey));
  }

  int get(char c, int k, string& answerKey) {
    int l = 0, r = 0;
    while (r < answerKey.size()) {
      if (answerKey[r++] == c) --k;
      if (k < 0 && answerKey[l++] == c) ++k;
    }
    return r - l;
  }
};
func maxConsecutiveAnswers(answerKey string, k int) int {
  get := func(c byte, k int) int {
    l, r := -1, -1
    for r < len(answerKey)-1 {
      r++
      if answerKey[r] == c {
        k--
      }
      if k < 0 {
        l++
        if answerKey[l] == c {
          k++
        }
      }
    }
    return r - l
  }
  return max(get('T', k), get('F', k))
}
function maxConsecutiveAnswers(answerKey: string, k: number): number {
  const n = answerKey.length;
  const getMaxCount = (target: 'T' | 'F'): number => {
    let l = 0;
    let u = k;
    for (const c of answerKey) {
      if (c !== target) {
        u--;
      }
      if (u < 0 && answerKey[l++] !== target) {
        u++;
      }
    }
    return n - l;
  };
  return Math.max(getMaxCount('T'), getMaxCount('F'));
}
impl Solution {
  pub fn max_consecutive_answers(answer_key: String, k: i32) -> i32 {
    let bs = answer_key.as_bytes();
    let n = bs.len();
    let get_max_count = |target| {
      let mut l = 0;
      let mut u = k;
      for b in bs.iter() {
        if b != &target {
          u -= 1;
        }
        if u < 0 {
          if bs[l] != target {
            u += 1;
          }
          l += 1;
        }
      }
      n - l
    };
    get_max_count(b'T').max(get_max_count(b'F')) as i32
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文