8568 2024. 01. 22 10:49:51 DhaneHane Átvágás (75 pont) cpp17 Hibás válasz 44/75 194ms 42536 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 Összpont Teszt Verdikt Idő Memória
base 44/75
1 Elfogadva 0/0 3ms 1872 KiB
2 Elfogadva 0/0 3ms 2128 KiB
3 Hibás válasz 0/0 9ms 3300 KiB
4 Részben helyes 2/4 3ms 2592 KiB
5 Részben helyes 2/4 3ms 2724 KiB
6 Elfogadva 4/4 3ms 2940 KiB
7 Részben helyes 2/4 3ms 2952 KiB
8 Részben helyes 2/4 3ms 3084 KiB
9 Részben helyes 2/4 3ms 3172 KiB
10 Részben helyes 2/4 140ms 28240 KiB
11 Részben helyes 2/4 156ms 30532 KiB
12 Részben helyes 2/4 175ms 33180 KiB
13 Részben helyes 2/4 173ms 35936 KiB
14 Részben helyes 2/4 180ms 37920 KiB
15 Részben helyes 2/4 194ms 39320 KiB
16 Részben helyes 2/4 192ms 41760 KiB
17 Részben helyes 2/4 184ms 42500 KiB
18 Részben helyes 3/5 185ms 42532 KiB
19 Részben helyes 3/6 184ms 42536 KiB
20 Elfogadva 6/6 186ms 42504 KiB
21 Elfogadva 2/2 3ms 20744 KiB