57772023-09-27 07:44:54zsebiElágazás nélküli úton levő települések (50 pont)cpp11Wrong answer 25/5030ms7016 KiB
// elagazas nelkul.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>
#include <algorithm>

#define ll long long 
using namespace std;

struct adat
{
    bool lat = false;
    vector<ll>sz;
};
ll n, m;

int main()
{
    cin >> n >> m;
    vector<adat>x(n+1);
    vector<ll>ans;
    for (int i = 1; i <= m; ++i)
    {
        ll a, b;
        cin >> a >> b;
        x[a].sz.push_back(b);
        x[b].sz.push_back(a);
    }
    vector<ll>falu;
    for (int i = 1; i <= n; ++i)
    {
        if (x[i].sz.size() == 1)falu.push_back(i);
    }
    for (auto b:falu)
    {
            deque<ll>v;
            v.push_back(b);
            vector<ll>lat(n+1,0);
            while (!v.empty())
            {
                ll akt = v.front();
               
                v.pop_front();
                lat[akt] = 1;
                for (auto& e : x[akt].sz)
                {
                    
                    if (!lat[e])
                    {
                      
                        ans.push_back(e);
                        if (x[e].sz.size() > 2)break;
                            v.push_back(e);
                    }
                }

            }
      
    }
    sort(ans.begin(), ans.end());
    cout << ans.size() << "\n";
    for (auto& e : ans)cout << e<<" ";
    return 0;
}
/*8 9
1 2
1 6
2 7
1 5
3 4
4 5
5 6
6 7
8 7*/
// 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
SubtaskSumTestVerdictTimeMemory
base25/50
1Accepted0/03ms1684 KiB
2Accepted0/030ms4756 KiB
3Wrong answer0/23ms2072 KiB
4Wrong answer0/23ms2304 KiB
5Accepted2/23ms2492 KiB
6Accepted2/23ms2696 KiB
7Accepted2/23ms2940 KiB
8Accepted2/24ms3412 KiB
9Accepted2/26ms3756 KiB
10Accepted2/28ms4264 KiB
11Accepted2/216ms4872 KiB
12Accepted2/216ms4784 KiB
13Wrong answer0/34ms3764 KiB
14Wrong answer0/34ms4336 KiB
15Wrong answer0/36ms4488 KiB
16Wrong answer0/38ms4972 KiB
17Wrong answer0/314ms5512 KiB
18Wrong answer0/317ms5744 KiB
19Wrong answer0/318ms6176 KiB
20Accepted3/329ms6832 KiB
21Accepted3/329ms7016 KiB
22Accepted3/329ms6960 KiB