85682024-01-22 10:49:51DhaneHaneÁtvágás (75 pont)cpp17Hibás válasz 44/75194ms42536 KiB
// atvagas.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

struct adat
{
    vector <int> sz;
};
vector <adat> x;
int n,bambusz, p, csillag;

int main()
{
    cin >> n;
    x.resize(n + 1);
    for (int i = 1; i < n; ++i)
    {
        int a, b; cin >> a >> b;
        x[b].sz.push_back(a);
        x[a].sz.push_back(b);
    }
    int maxi = 0;
    for (int i = 1; i <= n; ++i)
    {
        if (x[i].sz.size() > 2) ++bambusz;
        if (x[i].sz.size() > maxi)
        {
            maxi = x[i].sz.size();
            p = i;
        }
    }
    csillag = (n - 1)-x[p].sz.size();
    cout << bambusz << " "<<csillag;
}

// 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
base44/75
1Elfogadva0/03ms1872 KiB
2Elfogadva0/03ms2128 KiB
3Hibás válasz0/09ms3300 KiB
4Részben helyes2/43ms2592 KiB
5Részben helyes2/43ms2724 KiB
6Elfogadva4/43ms2940 KiB
7Részben helyes2/43ms2952 KiB
8Részben helyes2/43ms3084 KiB
9Részben helyes2/43ms3172 KiB
10Részben helyes2/4140ms28240 KiB
11Részben helyes2/4156ms30532 KiB
12Részben helyes2/4175ms33180 KiB
13Részben helyes2/4173ms35936 KiB
14Részben helyes2/4180ms37920 KiB
15Részben helyes2/4194ms39320 KiB
16Részben helyes2/4192ms41760 KiB
17Részben helyes2/4184ms42500 KiB
18Részben helyes3/5185ms42532 KiB
19Részben helyes3/6184ms42536 KiB
20Elfogadva6/6186ms42504 KiB
21Elfogadva2/23ms20744 KiB