40242023-03-09 11:45:58szabel26Legtávolabbi leszármazottcpp17Wrong answer 36/5096ms18504 KiB
// legtavolabbi.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>
#define ll long long
using namespace std;

struct adat {
    ll lep;
    bool lat = false;
    vector<ll>sz;
};

vector<adat>x;
deque<ll>v;

ll i, n, a, b, akt, maxi, p;

int main()
{
    cin >> n;
    x.resize(n + 1);
    while (cin >> a >> b)
    {
        x[a].sz.push_back(b);
        x[b].sz.push_back(a);
    }

    x[1].lat = true;
    x[1].lep = 0;
    v.push_back(1);
    while (!v.empty())
    {
        akt = v.front();
        v.pop_front();
        for (auto& e : x[akt].sz)
        {
            if (!x[e].lat || x[akt].lep + 1 < x[e].lep)
            {
                v.push_back(e);
                x[e].lep = x[akt].lep + 1;
                x[e].lat = true;
            }
        }
    }

    for (i = 1; i <= n; ++i)
    {
        if (x[i].lep > maxi)
        {
            maxi = x[i].lep;
            p = i;
        }
    }

    cout << p;
    return 0;
}
/*
8
1 4
5 7
8 6
8 5
3 1
3 2
3 8
*/
// 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
base36/50
1Accepted0/03ms1684 KiB
2Accepted0/086ms15828 KiB
3Accepted1/13ms1944 KiB
4Wrong answer0/33ms2132 KiB
5Wrong answer0/32ms2216 KiB
6Accepted1/12ms2464 KiB
7Accepted1/13ms2592 KiB
8Accepted1/13ms2896 KiB
9Accepted2/292ms18504 KiB
10Accepted3/389ms18436 KiB
11Accepted3/33ms3080 KiB
12Accepted4/494ms18212 KiB
13Accepted4/496ms18380 KiB
14Accepted3/39ms4876 KiB
15Accepted3/386ms16784 KiB
16Accepted3/381ms16608 KiB
17Accepted3/389ms17780 KiB
18Wrong answer0/464ms14268 KiB
19Accepted4/476ms16432 KiB
20Wrong answer0/493ms18116 KiB