57762023-09-27 07:39:29zsebiElágazás nélküli úton levő települések (50 pont)cpp11Wrong answer 31/5029ms6928 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>volt;
            while (!v.empty())
            {
                ll akt = v.front();
                volt.push_back(akt);
                v.pop_front();
                x[akt].lat = true;
                for (auto& e : x[akt].sz)
                {
                    auto res = find(volt.begin(), volt.end(), e);
                    if (res == end(volt))
                    {
                        if (!x[e].lat)
                        {

                            ans.push_back(e);
                            x[e].lat = true;
                        }

                        if (x[e].sz.size() <= 2)
                        {

                            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
base31/50
1Accepted0/03ms1684 KiB
2Accepted0/029ms4840 KiB
3Wrong answer0/23ms2220 KiB
4Accepted2/23ms2348 KiB
5Accepted2/23ms2560 KiB
6Wrong answer0/23ms2732 KiB
7Accepted2/22ms2780 KiB
8Accepted2/24ms3284 KiB
9Accepted2/26ms3500 KiB
10Accepted2/28ms3908 KiB
11Accepted2/216ms4812 KiB
12Accepted2/216ms4752 KiB
13Accepted3/34ms3520 KiB
14Wrong answer0/34ms3752 KiB
15Wrong answer0/36ms3952 KiB
16Wrong answer0/36ms4128 KiB
17Wrong answer0/314ms4904 KiB
18Wrong answer0/314ms4992 KiB
19Accepted3/317ms5384 KiB
20Accepted3/328ms6324 KiB
21Accepted3/329ms6928 KiB
22Accepted3/329ms6852 KiB