14152022-09-09 09:35:31kicsiboglarSzínes facpp11Elfogadva 50/50194ms49140 KiB
#include <iostream>
#include <vector>
#include <deque>

#define ll long long 

using namespace std;

ll n,i,a,mini=9999999;
struct element
{
    ll step,father;
    vector <ll> sz;
    bool leaf=false;
    ll color;
};
vector <element> x;

void BFS (ll start)
{
    deque<ll> v;
    v.push_back(start);
    x[start].step=1;
    ll curr;
    while (!v.empty())
    {
        curr=v[0];
        v.pop_front();
        if (x[curr].sz.empty())
        {
            x[curr].leaf=true;
            if (x[curr].step<mini) mini=x[curr].step;
            return;
        }
        for (auto &e:x[curr].sz)
        {
            x[e].step=x[curr].step+1;
            v.push_back(e);
        }
    }
}

void paint(ll curr)
{
    ll one=1;
    x[curr].color=max(one,x[x[curr].father].color-1);
    for (auto &e:x[curr].sz) paint(e);
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);

    cin>>n;
    x.resize(n+1);

    for (i=2;i<=n;++i)
    {
        cin>>a;
        x[a].sz.push_back(i);
        x[i].father=a;
    }
    BFS(1);
    x[0].color=mini+1;
    cout<<mini<<"\n";
    paint(1);
    for (i=1;i<=n;++i) cout<<x[i].color<<" ";
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base50/50
1Elfogadva0/03ms1828 KiB
2Elfogadva0/06ms3496 KiB
3Elfogadva1/12ms2240 KiB
4Elfogadva4/42ms2312 KiB
5Elfogadva5/575ms49140 KiB
6Elfogadva2/2100ms32948 KiB
7Elfogadva3/3100ms33152 KiB
8Elfogadva2/2112ms32968 KiB
9Elfogadva2/2103ms32792 KiB
10Elfogadva2/2108ms33160 KiB
11Elfogadva2/2123ms35816 KiB
12Elfogadva2/2167ms36544 KiB
13Elfogadva2/2137ms37324 KiB
14Elfogadva2/2140ms37244 KiB
15Elfogadva2/2142ms37816 KiB
16Elfogadva2/2140ms37836 KiB
17Elfogadva2/2173ms37916 KiB
18Elfogadva2/2160ms37956 KiB
19Elfogadva2/2174ms37960 KiB
20Elfogadva2/2192ms38384 KiB
21Elfogadva2/2194ms38580 KiB
22Elfogadva2/2165ms39104 KiB
23Elfogadva2/2172ms41304 KiB
24Elfogadva3/3179ms44540 KiB