-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtreesDiameter.cpp
More file actions
90 lines (74 loc) · 1.73 KB
/
treesDiameter.cpp
File metadata and controls
90 lines (74 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
class Node
{
public:
int nodeNum, weight, sum;
Node(int nodeNum, int weight)
{
this->nodeNum = nodeNum;
this->weight = weight;
this->sum = 0;
}
};
vector<Node> graph[100001];
vector<bool> isChecked(100001, false);
vector<Node> parent;
Node bfs(Node firstNode, int nodeNum)
{
Node longiestNode(0, 0);
queue<Node> q;
q.push(firstNode);
while (!q.empty())
{
Node current = q.front();
q.pop();
isChecked[current.nodeNum] = true;
for (int i = 0, len = graph[current.nodeNum].size(); i < len; i++)
{
Node &element = graph[current.nodeNum][i];
if (!isChecked[element.nodeNum])
{
element.sum = element.weight + current.sum;
q.push(element);
}
}
}
for (int i = 1; i <= nodeNum; i++)
{
for (int j = 0; j < graph[i].size(); j++)
{
if (graph[i][j].sum > longiestNode.sum)
{
longiestNode = graph[i][j];
}
isChecked[graph[i][j].nodeNum] = false;
graph[i][j].sum = 0;
}
}
return longiestNode;
}
int main()
{
int n, node, target, weight;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> node;
while (true)
{
cin >> target;
if (target == -1)
break;
cin >> weight;
graph[node].push_back(Node(target, weight));
}
}
Node longiestNode = bfs(Node(1, 0), n);
longiestNode.sum = 0;
Node result = bfs(longiestNode, n);
cout << result.sum << '\n';
return 0;
}