728x90
반응형
https://www.acmicpc.net/problem/1240
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
import java.io.*;
import java.util.*;
import static java.lang.Math.max;
public class Main {
public static class Node {
int node;
int len;
public Node(int node,int len) {
this.node = node;
this.len = len;
}
}
public static boolean []visit;
public static List<Node>list[];
public static int n,m;
public static int ans;
public static int []arr;
public static void DFS(int node1,int node2,int len) {
if(node1==node2){
ans=len;
}
visit[node1]=true;
for(Node nodes:list[node1]){
if(!visit[nodes.node]){
visit[nodes.node]=true;
DFS(nodes.node,node2,len+nodes.len);
}
}
}
public static void main(String[]args) throws IOException {
Scanner sc=new Scanner(System.in);
n=sc.nextInt();
m=sc.nextInt();
arr=new int[m];
list=new ArrayList[n+1];
for(int i=0;i<n+1;i++){
list[i]=new ArrayList<Node>();
}
for(int i=0;i<n-1;i++){
int node1=sc.nextInt();
int node2=sc.nextInt();
int len=sc.nextInt();
list[node1].add(new Node(node2,len));
list[node2].add(new Node(node1,len));
}
for(int i=0;i<m;i++){
visit=new boolean[n+1];
ans=0;
int node1=sc.nextInt();
int node2=sc.nextInt();
DFS(node1,node2,0);
arr[i]=ans;
}
for(int i=0;i<m;i++){
System.out.println(arr[i]);
}
}
}
|
cs |
다익스트라로 풀었다. 이게 다익스트라가 맞는지는 모르겠지만..ㅋㅋ 간선의 가중치여서 DFS,다익스트라! 이렇게 생각
했던 것 같다.
if(node1==node2){
<-- 여기서 return을 굳이 안해줘도 됐다. node1==node2일때만 ans에 값이 추가된다는 조건이 있고, visit배열로
조건판단을 또 해주기 때문에 분명 재귀는 끝나기 때문이다.
이게 아마 틀렸습니다의 이유였을듯하다. 탐색을 더 해야할 수도 있는데 갑자기 탐색을 끊어버리니까..!
728x90
반응형
'알고리즘 > 그래프' 카테고리의 다른 글
[java 백준] 실버 1/16918번 봄버맨 (0) | 2022.05.14 |
---|---|
[java 백준] 골드 5/ 10026번 적록색약 (0) | 2022.05.11 |
[C 백준]실버 3/N과M(2) (0) | 2022.03.19 |
[java백준/백트래킹]실버 3/ 15649번 N과 M(1) (0) | 2022.03.06 |
[java 백준] 실버 3/ 2606번 바이러스 (0) | 2022.02.26 |
댓글