40862023-03-13 09:20:08tamasmarkTűzijátékcpp17Elfogadva 50/5045ms6152 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ÖsszpontTesztVerdiktIdőMemória
base50/50
1Elfogadva0/03ms1876 KiB
2Elfogadva0/043ms3872 KiB
3Elfogadva2/23ms2360 KiB
4Elfogadva2/23ms2576 KiB
5Elfogadva2/23ms2792 KiB
6Elfogadva2/23ms3000 KiB
7Elfogadva2/23ms3064 KiB
8Elfogadva2/23ms3256 KiB
9Elfogadva2/24ms3396 KiB
10Elfogadva2/26ms3484 KiB
11Elfogadva2/26ms3616 KiB
12Elfogadva2/28ms3828 KiB
13Elfogadva2/28ms3732 KiB
14Elfogadva2/28ms3732 KiB
15Elfogadva3/38ms3868 KiB
16Elfogadva3/314ms4168 KiB
17Elfogadva3/317ms4524 KiB
18Elfogadva3/321ms4744 KiB
19Elfogadva3/345ms5832 KiB
20Elfogadva3/343ms5908 KiB
21Elfogadva4/443ms6152 KiB
22Elfogadva4/443ms6004 KiB