Post

BOJ1240 노드사이의 거리 - LCA?? BFS도 다시

BOJ1240 노드사이의 거리 - LCA?? BFS도 다시

BFS 재귀

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
#include <iostream>
#include <bits/stdc++.h>

using namespace std;

int dy[4] = {1,0,-1,0};
int dx[4] = {0,1,0,-1};

int dfs(int a, int b,int c, vector<vector<pair<int,int>>> &g, vector<bool> &visited){
    if(a==b){
        return c;
    }
    for(int i=0;i<g[a].size();i++){
        int next = g[a][i].first;
        int weight = g[a][i].second;
        if(visited[next] == false){
            visited[next] = true;
            int result = dfs(next,b, c+weight,g,visited);
            if(result != -1) return result;
            visited[next] = false;
        }
    }
    return -1;
}

int main() {
	cin.tie(0); cout.tie(0);
	ios::sync_with_stdio(0);

    vector<vector<pair<int,int>>> g;
    int N,M;
    cin >> N >> M; // n개 노드, m개 쌍

    for(int i=0;i<N+1;i++){ // 0번 버리고 n+1개 넣기
        vector<pair<int,int>> t;
        g.push_back(t);
    }

    for(int i=0;i<N-1;i++){
        int a,b,w;
        cin >> a >> b >> w;
        g[a].push_back({b,w});
        g[b].push_back({a,w});
    }
    for(int i=0;i<M;i++){
        vector<bool> visited;
        visited.resize(N+1,false);
        int a,b;
        cin>>a>>b;
        visited[a] = true;
        cout << dfs(a,b,0,g,visited)<<"\n";
    }

	return 0;
}

cpp로 처음 풀어본 그래프문제. 실수가 많았다
재귀 아닌걸로 다시 해봐야할것 같다. 이 방식대로 하면 안될것 같다…

BFS queue

LCA

트리라서 루트까지 거리 두번 재고 더해나가면 되는것 같은데 나중에..

This post is licensed under CC BY 4.0 by the author.