일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 15965
- 20006
- 23971
- PYTHON
- 라이브러리
- 파이썬
- 17087
- 6730
- java
- Algorithm
- sloved.ac
- 알고리즘
- 25379
- 장고
- 11688
- 24511
- 사용자정의필터
- solved.ac
- 백준
- 1342
- sovled.ac
- pccp
- SWEA
- 9081
- 2866
- Django
- 자바
- PS
- 프로그래머스
- programmers
Archives
- Today
- Total
코깽이의 코딩일기
[ 프로그래머스 / JAVA / Level 3 ] 가장 먼 노드 본문
반응형
제출한 코드
import java.io.*;
import java.util.*;
class Solution {
static Node[] node;
static class Node{
List<Integer> linked = new ArrayList<>();
}
public int solution(int n, int[][] edge) {
// Node 초기값 세팅
node = new Node[n+1];
for(int i = 1 ; i <= n ; i++){
node[i] = new Node();
}
// 간선 정보 저장
for(int i = 0 ; i < edge.length;i++){
int u = edge[i][0];
int v = edge[i][1];
node[u].linked.add(v);
node[v].linked.add(u);
}
int answer = bfs(n);
return answer;
}
private static int bfs(int n){
boolean[] v = new boolean[n+1];
Deque<int[]> q = new ArrayDeque<>();
int maxLen = 0; // 가장 먼 거리
int cnt = 0; // 개수
// root 노드 1에서 시작
v[1] = true;
q.add(new int[] {1,0});
while(!q.isEmpty()){
int[] cur = q.poll();
// 거리값이 갱신되는 경우
if(cur[1] > maxLen){
maxLen = cur[1];
cnt = 1;
}
// 개수 추가
else if(cur[1] == maxLen){
cnt++;
}
for(int next : node[cur[0]].linked){
if(v[next]){
continue;
}
v[next] = true;
q.add(new int[] {next, cur[1]+1});
}
}
return cnt;
}
}
생각한 로직
1. root node를 시작으로 최대 거리를 bfs로 구한다.
2. 최대 거리가 갱신되는 경우 maxLen 수정 및 cnt 초기화
3. 최대 거리와 동일한 경우 cnt값 증가
반응형
'PS > 프로그래머스' 카테고리의 다른 글
[ 프로그래머스 / JAVA / Level 1 ] [PCCP 기출문제] 1번 / 붕대 감기 (0) | 2024.06.13 |
---|---|
[ 프로그래머스 / JAVA / Level 2 ] 점프와 순간 이동 (0) | 2024.06.08 |
[ 프로그래머스 / JAVA / Level 2 ] 짝지어 제거하기 (0) | 2024.05.30 |
[ 프로그래머스 / JAVA / Level 2 ] 다음 큰 숫자 (1) | 2024.05.30 |
[ 프로그래머스 / JAVA / Level 2 ] 숫자의 표현 (0) | 2024.05.29 |