반응형 Problem Solving/Dijkstra & Floyd-Warshall14 [최단 경로] 백준 1916번: 최소비용 구하기 https://www.acmicpc.net/problem/1916 1916번: 최소비용 구하기 첫째 줄에 도시의 개수 N(1 ≤ N ≤ 1,000)이 주어지고 둘째 줄에는 버스의 개수 M(1 ≤ M ≤ 100,000)이 주어진다. 그리고 셋째 줄부터 M+2줄까지 다음과 같은 버스의 정보가 주어진다. 먼저 처음에는 그 www.acmicpc.net 아주 기본적인 다익스트라문제다. 이런 문제를 고민하면 안된다. import collections import heapq n = int(input()) m = int(input()) graph = collections.defaultdict(list) for _ in range(m): u,v,w = map(int, input().split()) graph[u].app.. 2021. 5. 22. [최단 경로] 백준 1753번: 최단 경로 https://www.acmicpc.net/problem/1753 1753번: 최단경로 첫째 줄에 정점의 개수 V와 간선의 개수 E가 주어진다. (1≤V≤20,000, 1≤E≤300,000) 모든 정점에는 1부터 V까지 번호가 매겨져 있다고 가정한다. 둘째 줄에는 시작 정점의 번호 K(1≤K≤V)가 주어진다. www.acmicpc.net import collections import heapq n, m = map(int, input().split()) k = int(input()) # construct graph graph = collections.defaultdict(list) for _ in range(m): u, v, w = map(int, input().split()) graph[u].append.. 2021. 5. 22. 이전 1 2 3 다음 반응형