76782024-01-10 12:34:14adamA lehető legkevesebb átszállás (50 pont)cpp17Runtime error 0/504ms4208 KiB
#include <bits/stdc++.h>
#include <algorithm>

using namespace std;

int main() {
    int village_count;
    cin >> village_count;
    int road_count;
    cin >> road_count;

    vector<vector<int>> village_tree(village_count);
    vector<bool> have_been_here(village_count, false);

    for (int i = 0; i < road_count; i++) {

        int village_id;
        int destination_id;


        cin >> village_id >> destination_id;

        if (!count(village_tree[village_id - 1].begin(), village_tree[village_id - 1].end(), destination_id - 1)) {
            village_tree[village_id - 1].push_back(destination_id - 1);
        }
        if (!count(village_tree[destination_id - 1].begin(), village_tree[destination_id - 1].end(), village_id - 1)) {
            village_tree[destination_id - 1].push_back(village_id - 1);
        }

    }

    vector<int> reachable;

    for (int i = 0; i < village_count; i++) {
        if (village_tree[i].size() != 1)
            continue;
        bool stop = false;
        int prev = i;
        if (village_tree[village_tree[i][0]].size() > 2) {
            if (have_been_here[village_tree[i][0]]) continue;
            have_been_here[village_tree[i][0]] = true;
            reachable.push_back(village_tree[i][0]);
            continue;
        }
        int check = village_tree[i][0];
        have_been_here[i] = true;
        while (!stop) {
            if (have_been_here[check]) break;
            if (village_tree[check].size() > 2){
                have_been_here[check] = true;
                reachable.push_back(check);
                stop = true;
            }
            else if (village_tree[check].size() == 2) {
                reachable.push_back(check);
                have_been_here[check] = true;
                if (village_tree[check][0] == prev)
                    check = village_tree[check][1];
                else
                    check = village_tree[check][0];
            } else {
                stop = true;
                reachable.push_back(check);
                have_been_here[check] = true;
            }
        }

    }
    cout << reachable.size() << endl;

    sort(reachable.begin(), reachable.end());

    for (int i = 0; i < reachable.size(); i++) {
        cout << reachable[i] + 1 << " ";
    }
    cout << endl;


    return 0;
}
SubtaskSumTestVerdictTimeMemory
base0/50
1Runtime error0/03ms1904 KiB
2Runtime error0/04ms2660 KiB
3Runtime error0/13ms2472 KiB
4Runtime error0/13ms2520 KiB
5Runtime error0/23ms2768 KiB
6Runtime error0/23ms2672 KiB
7Runtime error0/23ms3112 KiB
8Runtime error0/23ms3160 KiB
9Runtime error0/23ms3248 KiB
10Runtime error0/23ms3348 KiB
11Runtime error0/23ms3572 KiB
12Runtime error0/23ms3556 KiB
13Runtime error0/23ms3436 KiB
14Runtime error0/23ms3496 KiB
15Runtime error0/23ms3560 KiB
16Runtime error0/23ms3564 KiB
17Runtime error0/23ms3824 KiB
18Runtime error0/23ms3772 KiB
19Runtime error0/24ms4108 KiB
20Runtime error0/23ms3972 KiB
21Runtime error0/24ms4208 KiB
22Runtime error0/23ms4208 KiB
23Runtime error0/23ms4016 KiB
24Runtime error0/23ms4048 KiB
25Runtime error0/23ms4048 KiB
26Runtime error0/23ms4052 KiB
27Runtime error0/23ms4148 KiB
28Runtime error0/23ms4020 KiB