72742024-01-05 20:37:24szabelrA lehető legkevesebb átszállás (50 pont)cpp17Időlimit túllépés 12/50300ms5736 KiB
// A lehető legkevesebb átszállá.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
using namespace std;
int jok[100001]{ 0 };
int main()
{
    int n, m, kezd, veg, hol = 1, hova = 0, jo, valami=0,max=0,z=1,db=0,t=1,ln=0;
    cin >> n >> m;
    int tombkezd[100001]{ 0 };
    int tombveg[100001]{ 0 };
    //int jok[100001]{ 0 };
    for (int i = 1; i <= n; i++) 
    {
        cin >> kezd >> veg;
        tombkezd[i] = kezd;
        tombveg[i] = veg;
        if (veg > ln) {
            ln = veg;
        }
    }
    if (ln < m) {
        cout << "-1";
    }
    while (hol < m) 
    {   
        valami = 0;
        for (int i = 1; i <= n; i++) {
            if (tombkezd[i] == hol and tombveg[i]>hova) {
                valami = 1;
                hova = tombveg[i];
                jo = i;
            }
        }
        hol = hova;
        if (hova == max) {
            valami = 0;
        }
        if (hol > max) { 
            max=hol;
        }
        
        if (valami == 0 or hol<max) {
            hol=max-z;
            hova=max-z;
            z++;
            //cout << hol;
        }
        if (valami == 1) {
            jok[t] = jo;
            t++;
            z = 1;
        }
    }
    cout << t - 2<<endl;
    for (int alma = 1; alma <= t - 1; alma++) {
        cout << jok[alma] << " ";
    }

}

// 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
base12/50
1Elfogadva0/03ms3428 KiB
2Időlimit túllépés0/0231ms2088 KiB
3Futási hiba0/18ms4888 KiB
4Időlimit túllépés0/1266ms2568 KiB
5Elfogadva2/23ms4408 KiB
6Elfogadva2/23ms4356 KiB
7Hibás válasz0/24ms4424 KiB
8Hibás válasz0/24ms4648 KiB
9Hibás válasz0/24ms4860 KiB
10Hibás válasz0/26ms5076 KiB
11Időlimit túllépés0/2256ms3728 KiB
12Időlimit túllépés0/2277ms3684 KiB
13Időlimit túllépés0/2254ms4028 KiB
14Időlimit túllépés0/2259ms3760 KiB
15Időlimit túllépés0/2250ms3824 KiB
16Hibás válasz0/212ms5600 KiB
17Időlimit túllépés0/2300ms3788 KiB
18Időlimit túllépés0/2254ms3816 KiB
19Időlimit túllépés0/2241ms3912 KiB
20Időlimit túllépés0/2277ms4092 KiB
21Időlimit túllépés0/2270ms3896 KiB
22Időlimit túllépés0/2275ms4116 KiB
23Elfogadva2/229ms5528 KiB
24Elfogadva2/214ms5636 KiB
25Időlimit túllépés0/2254ms3944 KiB
26Elfogadva2/217ms5636 KiB
27Elfogadva2/235ms5736 KiB
28Hibás válasz0/265ms5736 KiB