반응형
문제유형 : 단순 그래프문제
1. 입력에 따라 그래프를 그린다.
2. BFS 탐색으로 K,V 에 대해서 V보다 작은 가중치에서대해서만 Q에 추가한다.
3. 이렇게 추가되는 횟수가 정답.
package boj;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class B15581 {
static class Edge {
int v;
int w;
public Edge(int v, int w) {
super();
this.v = v;
this.w = w;
}
}
static ArrayList<Edge>[] edge;
static int N;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
int Q = Integer.parseInt(st.nextToken());
edge = new ArrayList[N + 1];
for (int n = 1; n <= N; n++) {
edge[n] = new ArrayList<>();
}
for (int i = 1; i < N; i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int w = Integer.parseInt(st.nextToken());
edge[a].add(new Edge(b, w));
edge[b].add(new Edge(a, w));
}
StringBuilder sb = new StringBuilder();
for (int q = 0; q < Q; q++) {
st = new StringTokenizer(br.readLine());
int k = Integer.parseInt(st.nextToken());
int v = Integer.parseInt(st.nextToken());
sb.append(Solve(k, v)).append("\n");
}
System.out.println(sb.toString());
}
private static Object Solve(int k, int v) {
int cnt = 0;
boolean visit[] = new boolean[N + 1];
Queue<Integer> q = new LinkedList<>();
q.add(v);
visit[v] = true;
while (!q.isEmpty()) {
int cur = q.poll();
for (Edge next : edge[cur]) {
if (visit[next.v])
continue;
if (k > next.w)
continue;
visit[next.v] = true;
cnt++;
q.add(next.v);
}
}
return cnt;
}
}
반응형
'ProgramSoliving' 카테고리의 다른 글
백준 : 17780 새로운게임 (0) | 2021.04.05 |
---|---|
백준 : 10021 Watering the Fields (0) | 2021.04.04 |
백준 : 구간 합 구하기 (2042 , java) (2) | 2021.01.28 |
프로그래머스 : 거스름돈 (java) 메모이제이션 (4) | 2021.01.23 |
프로그래머스 : 외벽 점검 (JavaScript) (3) | 2021.01.23 |