返回介绍

solution / 1500-1599 / 1535.Find the Winner of an Array Game / README_EN

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

1535. Find the Winner of an Array Game

中文文档

Description

Given an integer array arr of distinct integers and an integer k.

A game will be played between the first two elements of the array (i.e. arr[0] and arr[1]). In each round of the game, we compare arr[0] with arr[1], the larger integer wins and remains at position 0, and the smaller integer moves to the end of the array. The game ends when an integer wins k consecutive rounds.

Return _the integer which will win the game_.

It is guaranteed that there will be a winner of the game.

 

Example 1:

Input: arr = [2,1,3,5,4,6,7], k = 2
Output: 5
Explanation: Let's see the rounds of the game:
Round |     arr     | winner | win_count
  1   | [2,1,3,5,4,6,7] | 2    | 1
  2   | [2,3,5,4,6,7,1] | 3    | 1
  3   | [3,5,4,6,7,1,2] | 5    | 1
  4   | [5,4,6,7,1,2,3] | 5    | 2
So we can see that 4 rounds will be played and 5 is the winner because it wins 2 consecutive games.

Example 2:

Input: arr = [3,2,1], k = 10
Output: 3
Explanation: 3 will win the first 10 rounds consecutively.

 

Constraints:

  • 2 <= arr.length <= 105
  • 1 <= arr[i] <= 106
  • arr contains distinct integers.
  • 1 <= k <= 109

Solutions

Solution 1

class Solution:
  def getWinner(self, arr: List[int], k: int) -> int:
    mx = arr[0]
    cnt = 0
    for x in arr[1:]:
      if mx < x:
        mx = x
        cnt = 1
      else:
        cnt += 1
      if cnt == k:
        break
    return mx
class Solution {
  public int getWinner(int[] arr, int k) {
    int mx = arr[0];
    for (int i = 1, cnt = 0; i < arr.length; ++i) {
      if (mx < arr[i]) {
        mx = arr[i];
        cnt = 1;
      } else {
        ++cnt;
      }
      if (cnt == k) {
        break;
      }
    }
    return mx;
  }
}
class Solution {
public:
  int getWinner(vector<int>& arr, int k) {
    int mx = arr[0];
    for (int i = 1, cnt = 0; i < arr.size(); ++i) {
      if (mx < arr[i]) {
        mx = arr[i];
        cnt = 1;
      } else {
        ++cnt;
      }
      if (cnt == k) {
        break;
      }
    }
    return mx;
  }
};
func getWinner(arr []int, k int) int {
  mx, cnt := arr[0], 0
  for _, x := range arr[1:] {
    if mx < x {
      mx = x
      cnt = 1
    } else {
      cnt++
    }
    if cnt == k {
      break
    }
  }
  return mx
}
function getWinner(arr: number[], k: number): number {
  let mx = arr[0];
  let cnt = 0;
  for (const x of arr.slice(1)) {
    if (mx < x) {
      mx = x;
      cnt = 1;
    } else {
      ++cnt;
    }
    if (cnt === k) {
      break;
    }
  }
  return mx;
}
public class Solution {
  public int GetWinner(int[] arr, int k) {
    int maxElement = arr[0], count = 0;
    for (int i = 1; i < arr.Length; i++) {
      if (maxElement < arr[i]) {
        maxElement = arr[i];
        count = 1;
      } else {
        count++;
      }
      if (count == k) {
        break;
      }
    }
    return maxElement;
  }
}

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

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

发布评论

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