반응형

문제 링크:https://www.acmicpc.net/problem/1967

 

1967번: 트리의 지름

파일의 첫 번째 줄은 노드의 개수 n(1 ≤ n ≤ 10,000)이다. 둘째 줄부터 n-1개의 줄에 각 간선에 대한 정보가 들어온다. 간선에 대한 정보는 세 개의 정수로 이루어져 있다. 첫 번째 정수는 간선이 연

www.acmicpc.net

<문제 풀이> DFS, BFS

N <= 10,000 이기 때문에 O(N^2)으로 문제를 해결할 수 있습니다.

모든 정점에 대해서 DFS or BFS를 돌려서 거리의 최댓값을 계속 갱신하면 됩니다.

<C++ 소스 코드>

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
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <stack>
#include <utility>
#include <climits>
#include <deque>
using namespace std;
 
int n;
vector<pair<intint> > adj[10001];
int dist[10001];
int res = 0;
void bfs() {
    for (int s = 1; s <= n; s++) {
        fill(dist, dist + 10001-1);
        queue<int> Q;
        Q.push(s);
        dist[s] = 0;
        while (!Q.empty()) {
            int u = Q.front(); Q.pop();
            res = max(res, dist[u]);
            for (auto& v : adj[u]) {
                if (dist[v.first] != -1continue;
                dist[v.first] = dist[u] + v.second;
                Q.push(v.first);
            }
        }
    }
}
 
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
 
    cin >> n;
    for (int i = 0; i < n - 1; i++) {
        int u, v, c;
        cin >> u >> v >> c;
        adj[u].push_back({ v, c });
        adj[v].push_back({ u ,c });
    }
    bfs();
    cout << res;
    return 0;
}
 
cs
반응형

'알고리즘 문제풀이 > 백준' 카테고리의 다른 글

[백준 2132번] 나무 위의 벌레  (0) 2021.12.16
[백준 1167번] 트리의 지름  (0) 2021.12.16
[백준 2331번] 반복수열  (0) 2021.12.12
[백준 16920번] 확장 게임  (0) 2021.12.08
[백준 11967번] 불켜기  (0) 2021.12.04

+ Recent posts