백준 1916

    [baekjoon 1916] 최소비용 구하기 - 그래프, 다익스트라 (C++)

    www.acmicpc.net/problem/1916 1916번: 최소비용 구하기 첫째 줄에 도시의 개수 N(1 ≤ N ≤ 1,000)이 주어지고 둘째 줄에는 버스의 개수 M(1 ≤ M ≤ 100,000)이 주어진다. 그리고 셋째 줄부터 M+2줄까지 다음과 같은 버스의 정보가 주어진다. 먼저 처음에는 그 www.acmicpc.net #include #include #include using namespace std; #define INF 1e9; vector v[1001]; priority_queue pq; int dist[1001]; int n, m, from, to, fromToCost, start, dest; int main() { ios::sync_with_stdio(false); cin.tie(0..