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