Cod sursa(job #3277618)

Utilizator Carnu_EmilianCarnu Emilian Carnu_Emilian Data 16 februarie 2025 22:21:49
Problema Secventa Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.8 kb
#include <bits/stdc++.h>
using namespace std;
ifstream fcin("secventa.in");
ofstream fcout("secventa.out");

const int N = 5e5 + 5;
int v[N], n, k;
deque<pair<int, int>> d;

int main()
{
    fcin >> n >> k;
    for (int i = 1; i <= n; i++)
        fcin >> v[i];
    int poz, bmax;
    bmax = 0;
    for (int i = 1; i <= n; i++)
    {
        while (!d.empty() && d.back().second > v[i])
            d.pop_back();
        d.push_back({i, v[i]});
        if (d.front().first == i - k)
            d.pop_front();
        if (i >= k)
        {
            int baza = d.front().second;
            if (baza > bmax)
            {
                bmax = baza;
                poz = i;
            }
        }
    }
    fcout << poz - k + 1 << ' ' << poz << ' ' << bmax;
    return 0;
}