본문 바로가기
Algorithm/BFS DFS

[프로그래머스] 가장 먼 노드 c++

by 젊은오리 2023. 2. 25.
728x90

 

 

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
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
vector<vector<int>> v(50001); //간선벡터
bool visited[20001]; //방문여부
vector<int> dist(20001); //최단거리 저장 (dist[3]인 경우 3까지의 최단경로)
int max_dist; //최대거리
 
void bfs(int node){
    queue<int> q;
    visited[node] = true;
    q.push(node);
    
    while(!q.empty()){
        int x = q.front();
        q.pop();
        for(int i=0;i<v[x].size();i++){
            if(visited[v[x][i]])
                continue;
            dist[v[x][i]] = dist[x] + 1;
            q.push(v[x][i]);
            visited[v[x][i]] = true;
            max_dist = max(max_dist,dist[v[x][i]]);
        }
    }
    
}
int solution(int n, vector<vector<int>> edge) {
    int answer = 0;
    for(int i=0;i<edge.size();i++){
        v[edge[i][0]].push_back(edge[i][1]);
        v[edge[i][1]].push_back(edge[i][0]);
    }
    
    visited[1= true;
    bfs(1);
    
    for(int i=0;i<dist.size();i++){
        if(dist[i] == max_dist)
            answer++;
    }
    return answer;
}
cs
728x90

'Algorithm > BFS DFS' 카테고리의 다른 글

[백준] 1012 유기농 배추 c++  (0) 2023.02.27
[백준] 2667 단지번호붙이기 c++  (0) 2023.02.27
[백준] 1987 알파벳 c++  (0) 2023.02.24
[백준] 바이러스 c++  (0) 2023.02.23
[프로그래머스] 게임 맵 최단거리 c++  (0) 2023.02.23

댓글