Cod sursa(job #3250083)

Utilizator Xutzu358Ignat Alex Xutzu358 Data 19 octombrie 2024 10:24:41
Problema Diametrul unui arbore Scor 100
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.7 kb
#include <fstream>
#include <vector>
#include <algorithm>
using namespace std;
ifstream f("darb.in");
ofstream g("darb.out");

int n, x, y;
vector < int > v[100005];
int fr_max, d_max;
bool viz[100005];

void dfs(int nod, int d) {
    if (d > d_max) {
        fr_max = nod;
        d_max = d;
    }
    viz[nod] = 1;
    for (int vec: v[nod]) {
        if (!viz[vec]) {
            dfs(vec, d+1);
        }
    }
}

int main() {
    f >> n;
    for (int i=1;i<n;i++) {
        f >> x >> y;
        v[x].push_back(y);
        v[y].push_back(x);
    }
    dfs(1, 1);
    for (int i=1;i<=n;i++)
        viz[i] = 0;
    d_max = 0;
    dfs(fr_max, 1);
    g << d_max;
    return 0;
}