15552022-11-25 11:18:03bzsofiaFasor (40)cpp11Accepted 40/40131ms9724 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
SubtaskSumTestVerdictTimeMemory
base40/40
1Accepted0/03ms1884 KiB
2Accepted0/07ms2536 KiB
3Accepted2/22ms2148 KiB
4Accepted2/22ms2148 KiB
5Accepted2/22ms2276 KiB
6Accepted2/22ms2516 KiB
7Accepted2/22ms2572 KiB
8Accepted2/23ms2740 KiB
9Accepted2/26ms3376 KiB
10Accepted2/28ms3476 KiB
11Accepted2/28ms3560 KiB
12Accepted2/27ms3640 KiB
13Accepted2/264ms6108 KiB
14Accepted2/252ms6308 KiB
15Accepted2/2109ms9132 KiB
16Accepted2/2119ms9260 KiB
17Accepted2/2123ms9388 KiB
18Accepted2/2129ms9472 KiB
19Accepted2/2131ms9724 KiB
20Accepted2/246ms6828 KiB
21Accepted2/2108ms9676 KiB
22Accepted2/2128ms9596 KiB