39712023-03-07 07:42:31CWMElágazás nélküli úton levő települések (50 pont)cpp17Elfogadva 50/5014ms5920 KiB
// Nemes2.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <algorithm>
#include <climits>
#include <vector>
#include <queue>
#include <unordered_set>

using namespace std;

vector<int> solution;
void DFS(int a, vector<vector<int>>& graph, int cameFrom) {
	if (graph[a].size() > 2) return;
	for (size_t i = 0; i < graph[a].size(); i++)
	{
		if (graph[a][i] != cameFrom) {
			solution.push_back(graph[a][i]);
			DFS(graph[a][i], graph, a);
		}
	}
}

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
	cout.tie(nullptr);

	int v, e;
	cin >> v >> e;
	vector<vector<int>> Neighbours(v + 1);
	for (size_t i = 0; i < e; i++)
	{
		int a, b;
		cin >> a >> b;
		Neighbours[a].push_back(b);
		Neighbours[b].push_back(a);
	}
	vector<int> zf;
	for (size_t i = 1; i < Neighbours.size(); i++)
	{
		if (Neighbours[i].size() == 1) {
			zf.push_back(i);
		}
	}
	for (size_t i = 0; i < zf.size(); i++)
	{
		DFS(zf[i], Neighbours, -1);
	}
	sort(solution.begin(), solution.end());
	vector<int> sol;
	if (solution.size() != 0) {
		sol.push_back(solution[0]);
		for (size_t i = 1; i < solution.size(); i++)
		{
			if (solution[i] != solution[i - 1]) sol.push_back(solution[i]);
		}
	}
	cout << sol.size() << "\n";
	for (size_t i = 0; i < sol.size(); i++)
	{
		cout << sol[i] << " ";
	}
}

// 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/03ms2088 KiB
2Elfogadva0/014ms4168 KiB
3Elfogadva2/23ms2320 KiB
4Elfogadva2/23ms2420 KiB
5Elfogadva2/23ms2500 KiB
6Elfogadva2/23ms2624 KiB
7Elfogadva2/23ms3116 KiB
8Elfogadva2/23ms3328 KiB
9Elfogadva2/24ms3496 KiB
10Elfogadva2/24ms3896 KiB
11Elfogadva2/28ms4460 KiB
12Elfogadva2/28ms4560 KiB
13Elfogadva3/33ms3864 KiB
14Elfogadva3/34ms3952 KiB
15Elfogadva3/34ms4008 KiB
16Elfogadva3/34ms4376 KiB
17Elfogadva3/37ms4708 KiB
18Elfogadva3/38ms4748 KiB
19Elfogadva3/38ms5044 KiB
20Elfogadva3/313ms5320 KiB
21Elfogadva3/313ms5612 KiB
22Elfogadva3/313ms5920 KiB