74732024-01-09 09:51:55gkataBenzinkút üzemeltetés (55)cpp17Elfogadva 55/553ms4472 KiB
// benzinkut uzemeltetes.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>

using namespace std;

struct adat
{
    int tav, ljhaszon, elozo;
    bool volt;
};

vector<adat>x;
vector<int>m;

int n, k, i, h, j;
int main()
{

    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    cin >> n >> k;

    x.resize(n + 1);

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

        x[i].volt = true;
        x[i].ljhaszon = h;
        x[i].elozo = i;
        j = i - 1;

        while (j >= 1 && x[i].tav - x[j].tav < k)
        {
            if (x[j].ljhaszon>x[i].ljhaszon)
            {
                x[i].ljhaszon = x[j].ljhaszon;
                x[i].elozo = j;
                x[i].volt = false;
            }
            --j;
        }

        if (j)
        {
            if (x[j].ljhaszon + h > x[i].ljhaszon)
            {
                x[i].ljhaszon = x[j].ljhaszon + h;
                x[i].elozo = j;
                x[i].volt = true;
            }
        }

    }

    if (x[n].volt) m.push_back(n);
    i = n;

    while (x[i].elozo != i)
    {
        i = x[i].elozo;
        if (x[i].volt) m.push_back(i);
    }

    cout << x[n].ljhaszon << "\n" << m.size() << " ";
    for (i = m.size()-1; i >= 0; --i) cout << m[i] << " ";
}

/*
5 20
10 10
20 40
30 10
40 20
50 30
*/
// 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
base55/55
1Elfogadva0/03ms1896 KiB
2Elfogadva0/03ms2144 KiB
3Elfogadva3/33ms2460 KiB
4Elfogadva3/33ms2448 KiB
5Elfogadva3/33ms2500 KiB
6Elfogadva3/33ms2736 KiB
7Elfogadva3/33ms3084 KiB
8Elfogadva3/33ms3308 KiB
9Elfogadva3/33ms3532 KiB
10Elfogadva3/33ms3760 KiB
11Elfogadva3/33ms3956 KiB
12Elfogadva3/33ms4200 KiB
13Elfogadva4/43ms4064 KiB
14Elfogadva4/43ms4132 KiB
15Elfogadva5/53ms4472 KiB
16Elfogadva6/63ms4312 KiB
17Elfogadva6/63ms4340 KiB