일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- correlation coefficient
- 연결요소
- string 메소드
- 자료구조
- double ended queue
- 시간복잡도
- Django란
- 매크로
- 입출력 패턴
- 알고리즘 공부방법
- string 함수
- 프레임워크와 라이브러리의 차이
- k-eta
- 이분그래프
- vscode
- EOF
- 장고란
- c++
- Django의 편의성
- 표준 입출력
- UI한글변경
- scanf
- 2557
- 구조체와 클래스의 공통점 및 차이점
- 엑셀
- 입/출력
- Django Nodejs 차이점
- iOS14
- getline
- 백준
Archives
- Today
- Total
Storage Gonie
(2) [C++, Java] 백준 No.11725 : 트리의 부모 찾기 본문
반응형
문제
풀이
자세한 풀이 : https://ldgeao99.tistory.com/entry/챕터7-3-트리-문제풀이
# C++(DFS, 인접리스트를 이용한 풀이)
#include <iostream>
#include <vector>
using namespace std;
int e; // 간선의 개수
vector<int> vec[100001]; // 인접리스트
bool check[100001]; // check배열
int parent[100001];
void dfs(int x);
int main()
{
//정점의 개수
cin >> e;
//입력을 받아 인접리스트 만들기
for (int i = 0; i < e-1; i++){
int a, b;
cin >> a >> b;
// 주어진 간선이 양방향이라고 하였으므로
vec[a].push_back(b);
vec[b].push_back(a);
}
//인접리스트를 이용해서 DFS탐색하기
dfs(1);
for (int i = 2; i <= e; i++)
cout << parent[i] << "\n";
}
void dfs(int x){
//cout << x << " ";
check[x] = true;
for (int i = 0; i < vec[x].size(); i++){
if (check[vec[x][i]] == false){
parent[vec[x][i]] = x;
dfs(vec[x][i]);
}
}
}
# C++(BFS, 인접리스트를 이용한 풀이)
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
int e; // 간선의 개수
vector<int> vec[100001]; // 인접리스트
bool check[100001]; // check배열
int parent[100001];
void bfs(int x);
int main()
{
//정점의 개수
cin >> e;
//입력을 받아 인접리스트 만들기
for (int i = 0; i < e-1; i++){
int a, b;
cin >> a >> b;
// 주어진 간선이 양방향이라고 하였으므로
vec[a].push_back(b);
vec[b].push_back(a);
}
//인접리스트를 이용해서 BFS탐색하기
bfs(1);
for (int i = 2; i <= e; i++)
cout << parent[i] << "\n";
}
void bfs(int x){
queue<int> q;
q.push(x);
check[x] = true;
while(!q.empty()){
int currentNode = q.front();
q.pop();
//cout << currentNode << " ";
for (int i = 0; i < vec[currentNode].size(); i++){
if(check[vec[currentNode][i]] == false){
q.push(vec[currentNode][i]);
check[vec[currentNode][i]] = true;
parent[vec[currentNode][i]] = currentNode;
}
}
}
}
# Java
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
ArrayList<Integer>[] a = (ArrayList<Integer>[]) new ArrayList[n+1];
for (int i=1; i<=n; i++) {
a[i] = new ArrayList<Integer>();
}
for (int i=0; i<n-1; i++) {
int u = sc.nextInt();
int v = sc.nextInt();
a[u].add(v);
a[v].add(u);
}
boolean[] check = new boolean[n+1];
int[] parent = new int[n+1];
Queue<Integer> q = new LinkedList<Integer>();
q.add(1);
check[1] = true;
while (!q.isEmpty()) {
int x = q.remove();
for (int y : a[x]) {
if (check[y] == false) {
check[y] = true;
parent[y] = x;
q.add(y);
}
}
}
for (int i=2; i<=n; i++) {
System.out.println(parent[i]);
}
}
}
반응형
'알고리즘 > 백준풀이10. 트리' 카테고리의 다른 글
(3) [C++, Java] 백준 No.1167 : 트리의 지름 (0) | 2019.05.23 |
---|---|
(1) [C++, Java] 백준 No.1991 : 트리 순회 (0) | 2019.05.23 |
Comments