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
- 피보나치함수
- katalon 비교
- 국세청 해외주식 양도세 신고방식
- 홈택스 해외주식 양도세
- 피보나치함수 예제
- bfs 미로탐색 java
- katalon 사용법
- 주식 양도세 신고방법
- recursion example
- 최대공약수 예제
- git 연동
- 재귀 예제
- katalon
- java.sql.SQLSyntaxErrorException
- 재귀함수 예제
- 해외증권 양도세 한국투자증권
- 톰캣 실시간 로그
- katalon 자동화
- tomcat log
- katalon xpath
- 한국투자증권 해외주식 양도세
- js 자동완성
- javascript 자동완성
- oracle group by
- 테스트 자동화
- 해외주식 양도세 신고
- 피보나치 예제
- CSTS 폭포수 모델
- Katalon Recorder 사용법
- 한국투자증권 양도세 신고
Archives
- Today
- Total
엄지월드
백준 1967 트리의 지름(DFS) 본문
문제 해석
- 9 -> 5 -> 3 -> 6 -> 12의 노드로 가면 가장 지름이 길다.
헷갈렸던 점
- 트리 구성을 오랫만에 하니 헷갈렸었다. n크기만큼 배열을 만들고, List<Node>로 구성해주었다.
- DFS가 이상하게 머리에서 안굴러가서 애먹었다. for문 구성 시 애먹음.
소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
public class test01 {
public static void main(String[] args) throws IOException {
solution();
}
static boolean[] visited;
static int max;
static int maxIdx;
static int sum;
static int n;
static List<Node>[] totalList;
public static void solution() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
totalList = new ArrayList[n+1];
visited = new boolean[n+1];
for(int i=0; i<=n; i++){
totalList[i] = new ArrayList<>();
}
for(int i=0; i<n-1; i++){
StringTokenizer st = new StringTokenizer(br.readLine());
int nodeValue = Integer.parseInt(st.nextToken());
int toValue = Integer.parseInt(st.nextToken());
int weightValue = Integer.parseInt(st.nextToken());
totalList[nodeValue].add(new Node(toValue, weightValue));
totalList[toValue].add(new Node(nodeValue, weightValue));
}
max = 0;
maxIdx = 0;
for(int i=1; i<=n; i++){
visited = new boolean[n+1];
visited[i] = true;
dfs(i, 0);
}
System.out.println(max);
}
public static void dfs(int idx, int cnt){
// System.out.println(idx +" "+cnt);
for(Node node : totalList[idx]){
if(!visited[node.to]){
visited[node.to] = true;
dfs(node.to, cnt+node.weight);
}
}
max = Math.max(max, cnt);
}
static class Node{
int to;
int weight;
public Node(int to, int weight) {
this.to = to;
this.weight = weight;
}
}
}
'알고리즘' 카테고리의 다른 글
72410 신규 아이디 추천 (0) | 2022.09.09 |
---|---|
68935 진법 뒤집기 (0) | 2022.09.09 |
성격 유형 검사하기 java (0) | 2022.09.04 |
오픈채팅방 java (0) | 2022.09.03 |
백준 2573 빙산(DFS+BFS) (0) | 2022.08.31 |
Comments