43592023-03-27 08:30:18tamasmarkHálózati biztonság (50)cpp17Hibás válasz 37/50162ms22648 KiB
// halozati biztonsag.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
#include <deque>
#include <climits>
#define ll long long

using namespace std;
struct adat
{
    bool lat;
    vector<ll>sz;
};

int n, i, m,a, b,k;
deque<ll>v,megold;
ll akt;
int main()
{
    cin >> n >> m >> k;
    vector<adat>x(n + 1);
    for (i = 1; i <= m; ++i)
    {
        cin >> a >> b;
        x[a].sz.push_back(b);
        x[b].sz.push_back(a);
    }
    for (i = 1; i <= n; ++i)
    {
        if (x[i].sz.size() <k)
        {
            v.push_back(i);
            x[i].lat = true;
            
        }
    }
    while (!v.empty())
    {
        akt = v.front();
        v.pop_front();
        for (auto& e : x[akt].sz)
        {
            if (!x[e].lat && x[e].sz.size()-1 < k)
            {
                x[e].lat = true;
                v.push_back(e);
            }
        }
    }
    for (i = 1; i <= n; ++i) if (x[i].lat == false) megold.push_back(i);
    cout << megold.size() << "\n";
    for (auto& e : megold) cout << e<<" ";
    return 0;
}
/*
8 12 3
8 7
7 3
4 3
8 5
6 5
3 1
2 1
7 1
2 7
2 3
4 6
4 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
RészfeladatÖsszpontTesztVerdiktIdőMemória
base37/50
1Elfogadva0/03ms1808 KiB
2Elfogadva0/086ms11856 KiB
3Elfogadva2/22ms2096 KiB
4Hibás válasz0/23ms2220 KiB
5Elfogadva2/23ms2472 KiB
6Hibás válasz0/22ms2568 KiB
7Elfogadva2/22ms2552 KiB
8Elfogadva2/23ms2640 KiB
9Elfogadva2/23ms2644 KiB
10Elfogadva2/28ms3268 KiB
11Elfogadva2/24ms3136 KiB
12Elfogadva2/26ms3452 KiB
13Elfogadva3/33ms3268 KiB
14Elfogadva3/37ms4176 KiB
15Elfogadva3/38ms5416 KiB
16Hibás válasz0/382ms11308 KiB
17Hibás válasz0/38ms4500 KiB
18Elfogadva3/313ms8400 KiB
19Hibás válasz0/394ms18440 KiB
20Elfogadva3/3162ms22648 KiB
21Elfogadva3/3104ms19128 KiB
22Elfogadva3/33ms3880 KiB