22742023-01-09 07:52:08bzsofiaTűzijátékcpp11Elfogadva 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
RészfeladatÖsszpontTesztVerdiktIdőMemória
base50/50
1Elfogadva0/03ms1812 KiB
2Elfogadva0/041ms2896 KiB
3Elfogadva2/22ms2260 KiB
4Elfogadva2/22ms2460 KiB
5Elfogadva2/22ms2664 KiB
6Elfogadva2/22ms2692 KiB
7Elfogadva2/22ms2960 KiB
8Elfogadva2/22ms2876 KiB
9Elfogadva2/24ms3032 KiB
10Elfogadva2/24ms3284 KiB
11Elfogadva2/24ms3284 KiB
12Elfogadva2/28ms3184 KiB
13Elfogadva2/28ms3176 KiB
14Elfogadva2/28ms3180 KiB
15Elfogadva3/38ms3464 KiB
16Elfogadva3/313ms3724 KiB
17Elfogadva3/317ms3688 KiB
18Elfogadva3/319ms3948 KiB
19Elfogadva3/343ms4412 KiB
20Elfogadva3/341ms4416 KiB
21Elfogadva4/441ms4472 KiB
22Elfogadva4/441ms4464 KiB