22742023-01-09 07:52:08bzsofiaTűzijátékcpp11Accepted 50/5043ms4472 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
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/03ms1812 KiB
2Accepted0/041ms2896 KiB
3Accepted2/22ms2260 KiB
4Accepted2/22ms2460 KiB
5Accepted2/22ms2664 KiB
6Accepted2/22ms2692 KiB
7Accepted2/22ms2960 KiB
8Accepted2/22ms2876 KiB
9Accepted2/24ms3032 KiB
10Accepted2/24ms3284 KiB
11Accepted2/24ms3284 KiB
12Accepted2/28ms3184 KiB
13Accepted2/28ms3176 KiB
14Accepted2/28ms3180 KiB
15Accepted3/38ms3464 KiB
16Accepted3/313ms3724 KiB
17Accepted3/317ms3688 KiB
18Accepted3/319ms3948 KiB
19Accepted3/343ms4412 KiB
20Accepted3/341ms4416 KiB
21Accepted4/441ms4472 KiB
22Accepted4/441ms4464 KiB