76212024-01-10 09:14:46AGergoA lehető legkevesebb átszállás (50 pont)cpp17Runtime error 42/504ms4536 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
cin.tie(0);
iostream::sync_with_stdio(0);
bool hasStart=false,hasEnd=false;
int vonatszam, allomasszam, current = 1, maxLength, maxID, id=0,num=-1;

cin >> vonatszam >> allomasszam;

vector<int> vonatStart(vonatszam);
vector<int> vonatEnd(vonatszam);
vector<int> valasz;

for(int i = 0; i< vonatszam; i++)
{
    cin >> vonatStart[i] >> vonatEnd[i];
    if(vonatStart[i] == 1)
    {
        hasStart = true;
    }

    if(vonatEnd[i] == allomasszam)
    {
        hasEnd = true;
    }
}
if(hasStart == false || hasEnd == false)
{
    cout << "-1";
}
else
{
    while(current != allomasszam)
    {

        if(vonatStart[id] <= current && vonatEnd[id]>maxLength)
        {
            maxID = id;
            maxLength = vonatEnd[id];
        }
        else if (vonatStart[id] > current)
        {
            if(maxLength == current)
            {
                cout << "-1";
                hasEnd = false;
                break;

            }
        num++;
        current = maxLength;
        valasz.push_back(maxID);
        id--;
        }
        id++;
    }
    if(hasEnd == true)
    {
        cout << num <<"\n";

        for(int asd:valasz)
        {
            cout << asd+1 << " ";
        }
    }
}


}
SubtaskSumTestVerdictTimeMemory
base42/50
1Accepted0/03ms1828 KiB
2Accepted0/04ms2232 KiB
3Accepted1/13ms2232 KiB
4Accepted1/13ms2596 KiB
5Accepted2/22ms2492 KiB
6Accepted2/23ms2688 KiB
7Accepted2/23ms2912 KiB
8Accepted2/23ms3136 KiB
9Accepted2/23ms3228 KiB
10Accepted2/23ms3296 KiB
11Accepted2/24ms3304 KiB
12Accepted2/24ms3368 KiB
13Accepted2/23ms3552 KiB
14Accepted2/23ms3504 KiB
15Accepted2/23ms3512 KiB
16Accepted2/24ms3528 KiB
17Accepted2/24ms3820 KiB
18Accepted2/24ms3736 KiB
19Accepted2/24ms3628 KiB
20Accepted2/24ms3880 KiB
21Accepted2/24ms4248 KiB
22Accepted2/24ms4340 KiB
23Runtime error0/24ms4280 KiB
24Runtime error0/24ms4372 KiB
25Accepted2/24ms4228 KiB
26Runtime error0/24ms4172 KiB
27Runtime error0/24ms4352 KiB
28Accepted2/24ms4536 KiB