85682024-01-22 10:49:51DhaneHaneÁtvágás (75 pont)cpp17Wrong answer 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
SubtaskSumTestVerdictTimeMemory
base44/75
1Accepted0/03ms1872 KiB
2Accepted0/03ms2128 KiB
3Wrong answer0/09ms3300 KiB
4Partially correct2/43ms2592 KiB
5Partially correct2/43ms2724 KiB
6Accepted4/43ms2940 KiB
7Partially correct2/43ms2952 KiB
8Partially correct2/43ms3084 KiB
9Partially correct2/43ms3172 KiB
10Partially correct2/4140ms28240 KiB
11Partially correct2/4156ms30532 KiB
12Partially correct2/4175ms33180 KiB
13Partially correct2/4173ms35936 KiB
14Partially correct2/4180ms37920 KiB
15Partially correct2/4194ms39320 KiB
16Partially correct2/4192ms41760 KiB
17Partially correct2/4184ms42500 KiB
18Partially correct3/5185ms42532 KiB
19Partially correct3/6184ms42536 KiB
20Accepted6/6186ms42504 KiB
21Accepted2/23ms20744 KiB