백준 1719 택배

skyepodium·2019년 2월 24일
0
post-thumbnail

문제

  • n개의 정점, m개의 간선이 주어집니다.
  • 간선의 정보는 1) 시작 점, 2) 도착 점, 3) 가중치 입니다. 간선의 양방향입니다.
  • 사진과 같이 시작 정점에서 다른 정점으로 최단 경로로 가기 위해 첫번째로 경유하는 정점들을 경로표로 출력하세요.
  • n(1 <= n <= 200) 정점의 수, m(1 <= m <= 10000) 간선의 수
  • 시간 제한 2초
  • 문제 링크

접근 과정

1. 경로 추적

  • 최단 경로로 이동한다고 했으니 최단 경로 알고리즘을 사용하면 됩니다. 다만, 경로를 추적해줍니다.
    다익스트라 알고리즘에서, 다음과 같이 거리를 갱신하는 부분에서, 경로 추적을 넣어줍니다.
if(d[n_node] > d[c_node] + n_cost){
	d[n_node] = d[c_node] + n_cost;
	// 경로 정보를 갱신합니다.
	// p[n_node] = c_node의 의미는 c_node에서 n_node로 왔습니다.
	p[n_node] = c_node;
	pq.push({n_node, d[n_node]});
}

2. 시간 복잡도 계산

  • 1) 다익스트라 알고리즘 시간 복잡도 O(nlogm) n은 정점의 수, m은 간선의 수, 다익스트라를 총 n번 수행하기 때문에 O(n^2logm)
  • n(1 <= n <= 200) 정점의 수, m(1 <= m <= 10000) 간선의 수 이기 때문에 O(n^2logm)은 O(4백만) 문제의 시간 제한이 2초 이기 때문에 시간안에 풀 수 있습니다.

코드

1. C++

#include <iostream>
#include <vector>
#include <queue>

#define max_val 2000005;
#define max_int 201
using namespace std;

//시간 복잡도: O(n^2logm)
//공간 복잡도: O(m)
//사용한 알고리즘: 다익스트라 알고리즘, 경로 추척
//사용한 자료구조: 인접 리스트

int n, m, a, b, c;
// 정점 i까지의 거리 정보를 담는 배열
// d[i] = l, 시작 정점에서 정점 i까지 가는 시간은 l
int d[max_int];
struct info{
    int cur;
    int cost;
};

// 간선의 정보를 저장하는 인접 리스트
vector<info> v[max_int];

// c++의 priority_queue는 max_heap이기 때문에 min_heap으로 바꿔줍니다.
struct cmp{
    bool operator()(const info &a, const info &b){
        return a.cost > b.cost;
    }
};

// 경로 추적을 위한 배열, p[i] = j, 정점 j에서 정점 i로 왔습니다.
int p[max_int];

int main(){
    scanf("%d %d", &n, &m);

    // 1. 간선 정보 입력
    for(int i=0; i<m; i++){
        scanf("%d %d %d", &a, &b, &c);
        v[a].push_back({b, c});
        v[b].push_back({a, c});
    }

    // 2. n개의 정점에 대해 다익스트라 알고리즘 수행

    // 1) 우선순위 큐 생성
    priority_queue<info, vector<info>, cmp> pq;
    for(int start_node=1; start_node <= n; start_node++){

        // 2) 거리 정보 초기화
        for(int i=1; i<=n; i++) d[i] = max_val;
        d[start_node] = 0;
        pq.push({start_node, 0});

        while(!pq.empty()){
            info cur = pq.top();
            int c_node = cur.cur;
            pq.pop();

            for(int i=0; i<v[c_node].size(); i++){
                info next = v[c_node][i];
                int n_node = next.cur;
                int n_cost = next.cost;
                
                if(d[n_node] > d[c_node] + n_cost){
                    d[n_node] = d[c_node] + n_cost;
                    // 경로 정보를 갱신합니다.
                    // p[n_node] = c_node의 의미는 c_node에서 n_node로 왔습니다.
                    p[n_node] = c_node;
                    pq.push({n_node, d[n_node]});
                }
            }
        }

        // 3. 경로표 출력
        for(int i=1; i<=n; i++){
            // 1) 시작 정점이면 - 출력
            if(i==start_node){
                printf("- ");
            }
            // 2) 바로 이전 정점이 시작 정점이면, 현재 정점 출력
            else if(p[i] == start_node){
                printf("%d ", i);
            }
            // 3) 경로 추척
            else{
                int cur_node = i;
                while(true){
                    // 시작 정점 바로 이전까지 검사합니다.
                    if(p[cur_node] == start_node){
                        printf("%d ", cur_node);
                        break;
                    }else{
                        cur_node = p[cur_node];
                    }
                }
            }
        }
        printf("\n");
    }
}
profile
callmeskye

0개의 댓글