Table Tennis CodeForces - 879B (思维+模拟)

Table Tennis

CodeForces - 879B

n people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so on. They play until someone wins k games in a row. This player becomes the winner.

For each of the participants, you know the power to play table tennis, and for all players these values are different. In a game the player with greater power always wins. Determine who will be the winner.


Input

The first line contains two integers: n and k (2 ≤ n ≤ 500, 2 ≤ k ≤ 1012) — the number of people and the number of wins.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ n) — powers of the player. It's guaranteed that this line contains a valid permutation, i.e. all ai are distinct.

Output

Output a single integer — power of the winner.

Examples
Input
2 2
1 2
Output
2 
Input
4 2
3 1 2 4
Output
3 
Input
6 2
6 5 3 1 2 4
Output
6 
Input
2 10000000000
2 1
Output
2
Note

Games in the second sample:

3 plays with 1. 3 wins. 1 goes to the end of the line.

3 plays with 2. 3 wins. He wins twice in a row. He becomes the winner.

这道题就是每次把第一个人和他后面的人比较,同时计数,如果过程中计数结果比K大,就直接输出当前值,如果比较有大于的数,就更换答案,计数变成1,重新计数,如果始终没有出现,就输出数列中最大的数。

code:

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
typedef long long ll;
int main(){
    int n;
    int a[600],st;
    ll k;
    cin >> n >> k;
    for(int i = 0; i < n; i++){
        cin >> a[i];
    }
    int ans = a[0];
    st = 0;
    for(int i = 1; i < n; i++){
        if(st >= k){
            cout << ans << endl;
            return 0;
        }
        if(ans > a[i])
            st++;
        else{
            st = 1;
            ans = a[i];
        }
    }
    cout << ans << endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/codeswarrior/article/details/80095845