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
- 01BFS
- 다익스트라
- 재귀함수
- 시뮬레이션
- java
- 알고리즘
- YBMCOS
- 구현
- spring
- 백준
- DFS
- 다이나믹프로그래밍
- 우선순위큐
- 완전탐색
- dp
- 세그먼트트리
- PS
- 네트워크플로우
- deque
- GatherTown
- 백준코딩테스트
- 취득후기
- COSPROJAVA1급
- QUICKSTARTGUIDE
- 자바PS
- 엘라스틱서치
- 게더타운시작
- BFS
- COSPRO
- 이젠 골드구현도 어렵네..
Archives
- Today
- Total
공부공간
BOJ - 15681 ) 트리와 쿼리 본문
https://www.acmicpc.net/problem/15681
루트노드가 정해졌으므로 루트노드부터 재귀탐색을 하며
하위 노드의 개수를 저장한다. 리프 노드의 경우 1로 간주한다.
따라서, 자신과 연결된 노드들의 값 +1을 현재에 값에 저장시키며 재귀탐색을 진행한다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.StringTokenizer;
public class Main {
public static int[] cost ;
public static boolean[] visit ;
public static ArrayList<Integer> node[];
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int R = Integer.parseInt(st.nextToken())-1;
int Q = Integer.parseInt(st.nextToken());
cost = new int[N];
visit= new boolean[N];
node = new ArrayList[N];
for(int i=0;i<N;i++){node[i] = new ArrayList<>();}
for(int i=0;i<N-1;i++){
st = new StringTokenizer(br.readLine());
int s = Integer.parseInt(st.nextToken())-1;
int e = Integer.parseInt(st.nextToken())-1;
node[s].add(e); node[e].add(s);
}
DFS(R);
StringBuilder sb = new StringBuilder();
for(int i=0;i<Q;i++) {sb.append(1+cost[Integer.parseInt(br.readLine())-1]).append("\n");}
System.out.println(sb.toString());
}
private static int DFS(int now) {
visit[now] = true;
for(int i=0;i<node[now].size();i++) {
if(!visit[node[now].get(i)]) {
cost[now] += DFS(node[now].get(i));
}
}
return cost[now]+1;
}
}
'알고리즘 > Dynamic Programming' 카테고리의 다른 글
BOJ - 17069 ) 파이프 옮기기 2 (0) | 2022.04.13 |
---|---|
BOJ-17626 ) Four Squares (0) | 2022.03.02 |
BOJ - 10211 ) Maximum Subarray (0) | 2020.11.16 |
BOJ - 1520 ) 내리막길 (0) | 2020.08.27 |
BOJ - 9252 ) LCS 2 (0) | 2020.08.25 |
Comments