1555 2022. 11. 25 11:18:03 bzsofia Fasor (40) cpp11 Elfogadva 40/40 131ms 9724 KiB
// Fasor.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>

using namespace std;

int i, n, m, k, x[200001];
bool jo[200001];
priority_queue <pair <int, int>> st;

int main()
{
    cin >> m >> k;

    for (i = 1; i <= m; ++i)
    {
        cin >> x[i];

        st.push({ x[i],i });

        while (!st.empty() && st.top().second < i - k) st.pop();

        if (st.top().first <= x[i]) jo[i] = 1;
        //cout << st.top().first << "\n";
    }

    while (!st.empty()) st.pop();

    for (i = m; i >=1; --i)
    {
        st.push({ x[i],i });

        while (!st.empty() && st.top().second > i + k) st.pop();

        if (st.top().first > x[i]) jo[i] = 0;
        //cout << st.top().first << " ";
    }

    //cout << "\n";

    for (i = 1; i <= m; ++i)
    {
        if (jo[i])
        {
            cout << i;
            return 0;
        }
    }

    return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
Részfeladat Összpont Teszt Verdikt Idő Memória
base 40/40
1 Elfogadva 0/0 3ms 1884 KiB
2 Elfogadva 0/0 7ms 2536 KiB
3 Elfogadva 2/2 2ms 2148 KiB
4 Elfogadva 2/2 2ms 2148 KiB
5 Elfogadva 2/2 2ms 2276 KiB
6 Elfogadva 2/2 2ms 2516 KiB
7 Elfogadva 2/2 2ms 2572 KiB
8 Elfogadva 2/2 3ms 2740 KiB
9 Elfogadva 2/2 6ms 3376 KiB
10 Elfogadva 2/2 8ms 3476 KiB
11 Elfogadva 2/2 8ms 3560 KiB
12 Elfogadva 2/2 7ms 3640 KiB
13 Elfogadva 2/2 64ms 6108 KiB
14 Elfogadva 2/2 52ms 6308 KiB
15 Elfogadva 2/2 109ms 9132 KiB
16 Elfogadva 2/2 119ms 9260 KiB
17 Elfogadva 2/2 123ms 9388 KiB
18 Elfogadva 2/2 129ms 9472 KiB
19 Elfogadva 2/2 131ms 9724 KiB
20 Elfogadva 2/2 46ms 6828 KiB
21 Elfogadva 2/2 108ms 9676 KiB
22 Elfogadva 2/2 128ms 9596 KiB