2274 2023. 01. 09 07:52:08 bzsofia Tűzijáték cpp11 Elfogadva 50/50 43ms 4472 KiB
// Tuzijatek.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <deque>
#include <vector>

using namespace std;

int i, n, kezd, tav, elozo;
deque <int> s;

int main()
{
    cin >> n >> kezd >> tav;
    vector <int> x(n + 1);

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

    s.push_front(kezd);
    elozo = x[kezd];
    for (i = kezd-1; i >= 1; --i)
    {
        if (elozo - x[i] >= tav)
        {
            s.push_front(i);
            elozo = x[i];
        }
    }

    elozo = x[kezd];
    for (i = kezd+1; i <= n; ++i)
    {
        if (x[i] - elozo >= tav)
        {
            s.push_back(i);
            elozo = x[i];
        }
    }

    cout << s.size() << "\n";
    for (auto& e : s)
    {
        cout << e << " ";
    }
}

// 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 50/50
1 Elfogadva 0/0 3ms 1812 KiB
2 Elfogadva 0/0 41ms 2896 KiB
3 Elfogadva 2/2 2ms 2260 KiB
4 Elfogadva 2/2 2ms 2460 KiB
5 Elfogadva 2/2 2ms 2664 KiB
6 Elfogadva 2/2 2ms 2692 KiB
7 Elfogadva 2/2 2ms 2960 KiB
8 Elfogadva 2/2 2ms 2876 KiB
9 Elfogadva 2/2 4ms 3032 KiB
10 Elfogadva 2/2 4ms 3284 KiB
11 Elfogadva 2/2 4ms 3284 KiB
12 Elfogadva 2/2 8ms 3184 KiB
13 Elfogadva 2/2 8ms 3176 KiB
14 Elfogadva 2/2 8ms 3180 KiB
15 Elfogadva 3/3 8ms 3464 KiB
16 Elfogadva 3/3 13ms 3724 KiB
17 Elfogadva 3/3 17ms 3688 KiB
18 Elfogadva 3/3 19ms 3948 KiB
19 Elfogadva 3/3 43ms 4412 KiB
20 Elfogadva 3/3 41ms 4416 KiB
21 Elfogadva 4/4 41ms 4472 KiB
22 Elfogadva 4/4 41ms 4464 KiB