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 | 31 |
Tags
- 투포인터
- 카카오인턴
- 유니온파인드
- 소감
- 삼성 #코테 #2020상반기 #c++
- 코딩테스트
- Smilegate
- Union-find
- BFS
- 서버개발캠프
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- BaekJoon
- c++
- 스마일게이트
- 백준
- 카카오
- 1편
- Algorithm
- 알고리즘
- LIS #Algorithm #요소추적
- 중반부
- 식단
- 코테
- 보석쇼핑
Archives
- Today
- Total
짱아의 개발 기록장
백준 2250번. 트리의 높이와 너비(c++) / Tree 본문
반응형
전형적인 Tree문제이다.
InorderTraversal(중위순회)을 통해서 col값을 ++해주고
dfs를 통해서 인자값으로 넘긴 level을 기준으로 height[level]값에 해당 col값을 차례대로 넣어주었다.
이후에는 1~maxHeight값을 탐색하며 level별로 너비를 구해주며, 최대 너비를 구했다.
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
|
// 트리의 높이와 너비
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
pair<int, int> tree[10001];
int n, m, a, b, root;
int cnt[10001] = {0, };
int idx = 0, maxHeight = 0;
vector<int> height[10001];
bool cmp(const pair<int, int> &a, const pair<int, int> &b){
if(a.first==b.first){
return a.second<b.second;
}
return a.first>b.first;
}
void InorderTraversal(int node, int level){
if(node==-1){
return;
}
maxHeight = max(maxHeight, level);
InorderTraversal(tree[node].first, level+1);
height[level].push_back(idx++);
InorderTraversal(tree[node].second, level+1);
}
int main()
{
cin>>n;
for(int i=1; i<=n; i++){
cin>>m>>a>>b;
tree[m] = make_pair(a, b);
cnt[m]++;
cnt[a]++;
cnt[b]++;
}
for(int i=1; i<=n; i++){
if(cnt[i]==1){
root = i;
break;
}
}
InorderTraversal(root, 1);
vector<pair<int, int>> temp;
for(int i=1; i<=maxHeight; i++){
int width = height[i][height[i].size()-1]-height[i][0]+1;
temp.push_back(make_pair(width, i));
}
sort(temp.begin(), temp.end(), cmp);
cout<<temp[0].second<<" "<<temp[0].first<<"\n";
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 16926번. 배열 돌리기1(c++) / 구현 (0) | 2021.03.25 |
---|---|
백준 3190번. 뱀(c++) / 구현 (0) | 2021.03.16 |
백준 1717번. 집합의 표현(c++) / 유니온파인드 (0) | 2021.02.26 |
백준 14888번. 연산자 끼워넣기(c++) / String+순열 (0) | 2021.02.17 |
백준 2293번. 동전 1(c++) / DP (0) | 2021.02.14 |
Comments