Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 유니온 파인드
- 구현
- Team Fortress 2
- 누적 합
- VR
- ue5
- 스택
- 다익스트라
- BFS
- c++
- 그래프
- 정렬
- 자료구조
- 백준
- 다이나믹 프로그래밍
- 투 포인터
- DFS
- 시뮬레이션
- 문자열
- 수학
- 재귀
- 유니티
- 백트래킹
- 그리디 알고리즘
- 트리
- 우선순위 큐
- XR Interaction Toolkit
- 알고리즘
- 브루트포스
- Unreal Engine 5
Archives
- Today
- Total
1일1알
백준 1167 트리의 지름 C++ 본문
트리의 지름 구하는 법:
1. 임의의 정점x를 정한다.
2. x에서 가장 멀리있는 정점 y를 구한다.
3. y에서 가장 멀리 있는 정점까지의 거리가 트리의 지름이다.
출처 : https://blog.myungwoo.kr/112
위에서 나온 트리의 지름을 구하는 방법만 알고 있으면 dfs를 이용해서 쉽게 구현할 수 있다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
const int INF = 987654321;
int v;
map<int, vector<pair<int, int>>> mp;
vector<bool> visited;
int ans = 0;
int start2 = 0;
void Dfs(int start, int sum) {
if (visited[start]) return;
visited[start] = true;
if (sum > ans) {
ans = sum;
start2 = start;
}
for (auto next : mp[start]) {
Dfs(next.first, sum + next.second);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> v;
visited = vector<bool>(v + 1, false);
for (int i = 0; i < v; i++) {
int start;
cin >> start;
while (true) {
int end;
cin >> end;
if (end == -1) break;
int dist;
cin >> dist;
mp[start].push_back({ end,dist });
}
}
Dfs(1, 0);
visited.clear();
visited = vector<bool>(v + 1, false);
ans = 0;
Dfs(start2, 0);
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2263번 트리의 순회 C++ (0) | 2022.06.22 |
---|---|
백준 1918번 후위 표기식 C++ (0) | 2022.06.21 |
백준 1865번 웜홀 C++ (0) | 2022.06.19 |
백준 11404번 플로이드 C++ (0) | 2022.06.18 |
백준 1967번 트리의 지름 C++ (0) | 2022.06.17 |