79762024-01-12 09:35:23250L7A lehető legkevesebb átszállás (50 pont)cpp17Futási hiba 49/5050ms64424 KiB
// vonat.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
using namespace std;

int main()
{
	int vonat, allom;
	cin >> vonat >> allom;
	vector <pair<int, int>> megall(vonat);
	for (int i = 0; i < vonat; i++)
	{
		cin >> megall[i].first >> megall[i].second;
	}
	int helymax = 1;
	int x = 0;
	int atszall = 0;
	int maxi = 0, maxihely = 0;
	vector <int> ut;
	while (x < vonat && helymax != allom)
	{
		//cout << "n";
		while (x < vonat && megall[x].first <= helymax)
		{
			if (megall[x].second > maxi)
			{
				maxi = megall[x].second;
				maxihely = x;
			}
			x++;
		}
		helymax = maxi;
		ut.push_back(maxihely+1);
		atszall++;
	}
	if (helymax == allom)
	{
		cout << atszall - 1 << endl;
		for (int i = 0; i < ut.size(); i++)
		{
			cout << ut[i] << " ";
		}
	}
	else {
		cout << "-1";
	}
}

// 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
base49/50
1Elfogadva0/03ms1816 KiB
2Elfogadva0/08ms2260 KiB
3Elfogadva1/13ms2340 KiB
4Futási hiba0/150ms64424 KiB
5Elfogadva2/23ms2528 KiB
6Elfogadva2/23ms2540 KiB
7Elfogadva2/23ms2832 KiB
8Elfogadva2/23ms3012 KiB
9Elfogadva2/24ms2980 KiB
10Elfogadva2/24ms3180 KiB
11Elfogadva2/24ms3200 KiB
12Elfogadva2/26ms3216 KiB
13Elfogadva2/23ms3176 KiB
14Elfogadva2/24ms3316 KiB
15Elfogadva2/24ms3408 KiB
16Elfogadva2/26ms3428 KiB
17Elfogadva2/28ms3696 KiB
18Elfogadva2/28ms3920 KiB
19Elfogadva2/28ms4132 KiB
20Elfogadva2/28ms4092 KiB
21Elfogadva2/28ms4100 KiB
22Elfogadva2/28ms4100 KiB
23Elfogadva2/28ms4396 KiB
24Elfogadva2/28ms4340 KiB
25Elfogadva2/28ms4304 KiB
26Elfogadva2/28ms4564 KiB
27Elfogadva2/28ms4516 KiB
28Elfogadva2/28ms4516 KiB