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
- 트랜잭션 관리
- 5639
- 실습
- OS
- oracle
- 1759번
- UActor
- 1253번
- Linux
- 비재귀셰그먼트
- 언리얼 커스텀 플러그인
- 민겸수
- Unreal
- 1967번
- 백준
- 셰그먼트트리
- Security
- UnrealMP
- 오손데이터읽기
- command not found
- objtofbx
- C++
- SQL
- 의미와 무의미의 경계에서
- 언리얼 플러그인
- FBX
- 데이터베이스 배움터
- 백준 1253번
- hackerank
- 2단계로킹
Archives
- Today
- Total
fatalite
트리의 부모 찾기 - 백준 11725 본문
Problem
실버 2 문제
분류
그래프 탐색 문제, 트리
접근
DFS(탐색용), Adj List(V = E), 무방향 그래프 표현, 구조체 이용
몰랐던 것 및 까먹은 부분
1) 트리에는 루트 노드가 원래 없다.
2) "\n"
3)
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
Solution
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int n;
struct node {
int parent = -1;
bool visited = false;
vector<int> linked;
};
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
vector<node> nodes(n);
for (int i = 0; i < n - 1; i++) {
int a;
int b;
cin >> a >> b;
nodes[a - 1].linked.push_back(b - 1);
nodes[b - 1].linked.push_back(a - 1);
}
vector<int> q;
q.push_back(0);
nodes[0].visited = true;
int cnt = 0;
while(!q.empty()){
cnt++;
int idx = q.back();
q.pop_back();
for (int u : nodes[idx].linked) {
if (nodes[u].visited != true) {
nodes[u].visited = true;
q.push_back(u);
nodes[u].parent = idx;
}
}
}
for (node n : nodes) {
if (n.parent != -1) {
cout << n.parent + 1 << "\n";
}
}
}
'코딩 인터뷰 > Graph Basic' 카테고리의 다른 글
네트워크 연결 - 1922번 백준 (0) | 2023.09.26 |
---|---|
별자리 만들기 - 4386번 백준 (0) | 2023.09.26 |
녹색 옷 입은 애가 젤다지? - 4485번 백준 (0) | 2023.09.25 |
알고스팟 - 1261번 백준 (0) | 2023.09.25 |
미로 찾기 - 2178번 백준 (0) | 2023.09.16 |