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
- BFS
- ue5
- 트리
- 백준
- 구현
- 알고리즘
- 유니온 파인드
- DFS
- XR Interaction Toolkit
- 재귀
- 브루트포스
- VR
- 우선순위 큐
- 다익스트라
- 누적 합
- 스택
- 다이나믹 프로그래밍
- c++
- 수학
- 그래프
- 문자열
- 백트래킹
- 자료구조
- 그리디 알고리즘
- 투 포인터
- Unreal Engine 5
Archives
- Today
- Total
목록백준 1967 C++ (1)
1일1알

루트부터 시작해서 자식들 중 가장 긴 두 경로를 재귀적으로 탐색하는 방식으로 풀었다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int ans = 0; struct Node { vector childs; }; map mp; int GetDiameter(int root) { if (mp.find(root) == mp.end()) return 0; vector dists(mp[root].childs.size()); ..
알고리즘
2022. 6. 17. 11:58