4086 2023. 03. 13 09:20:08 tamasmark Tűzijáték cpp17 Elfogadva 50/50 45ms 6152 KiB
// tuzijatek.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

struct adat
{
    long long tav;
    bool lat;
};
vector<long long>x;
vector<int>megold;
int i, n, m, tav,a;

int main()
{
    cin >> n >> m >> tav;
    x.resize(n + 1);
    megold.push_back(m);
    for (i = 1; i <= n; ++i)
    {
        cin >> x[i];
    }
    a = m;
    for (i = m - 1; i >= 1; --i)
    {
        if (x[a] - x[i] >= tav)
        {
            megold.push_back(i);
            a = i;
        }
    }
    a = m;
    for (i = m + 1; i <= n; ++i)
    {
        if (x[i] - x[a] >= tav)
        {
            megold.push_back(i);
            a = i;
        }
    }
    sort(megold.begin(), megold.end());
    cout << megold.size()<<"\n";
    for (auto& e : megold)
    {
        cout << e << " ";
    }
    return 0;
}
/*
6 4 100
0 70 110 210 230 500

*/
// 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 1876 KiB
2 Elfogadva 0/0 43ms 3872 KiB
3 Elfogadva 2/2 3ms 2360 KiB
4 Elfogadva 2/2 3ms 2576 KiB
5 Elfogadva 2/2 3ms 2792 KiB
6 Elfogadva 2/2 3ms 3000 KiB
7 Elfogadva 2/2 3ms 3064 KiB
8 Elfogadva 2/2 3ms 3256 KiB
9 Elfogadva 2/2 4ms 3396 KiB
10 Elfogadva 2/2 6ms 3484 KiB
11 Elfogadva 2/2 6ms 3616 KiB
12 Elfogadva 2/2 8ms 3828 KiB
13 Elfogadva 2/2 8ms 3732 KiB
14 Elfogadva 2/2 8ms 3732 KiB
15 Elfogadva 3/3 8ms 3868 KiB
16 Elfogadva 3/3 14ms 4168 KiB
17 Elfogadva 3/3 17ms 4524 KiB
18 Elfogadva 3/3 21ms 4744 KiB
19 Elfogadva 3/3 45ms 5832 KiB
20 Elfogadva 3/3 43ms 5908 KiB
21 Elfogadva 4/4 43ms 6152 KiB
22 Elfogadva 4/4 43ms 6004 KiB