π 곡λΆνλ μ§μ§μνμΉ΄λ μ²μμ΄μ§?
[μ΄κ²μ΄ μ½λ© ν μ€νΈλ€ with Python]_32_μ΅λ¨ κ²½λ‘ μκ³ λ¦¬μ¦ κΈ°μ΄ λ¬Έμ νμ΄ λ³Έλ¬Έ
[μ΄κ²μ΄ μ½λ© ν μ€νΈλ€ with Python]_32_μ΅λ¨ κ²½λ‘ μκ³ λ¦¬μ¦ κΈ°μ΄ λ¬Έμ νμ΄
μ§μ§μνμΉ΄ 2022. 2. 13. 00:01220213 μμ±
<λ³Έ λΈλ‘κ·Έλ γμ΄κ²μ΄ μ·¨μ μ μν μ½λ© ν μ€νΈλ€γ μ youtubeλ₯Ό μ°Έκ³ ν΄μ 곡λΆνλ©° μμ±νμμ΅λλ€>
https://www.youtube.com/watch?v=liuUazQaLuU&list=PLVsNizTWUw7H9_of5YCB0FmsSc-K44y81&index=32
< λ¬Έμ 1 > μ 보
: N κ°μ λμκ° μλ€
: κ° λμμ λ²νΈμ ν΅λ‘κ° μ€μΉλμ΄ μλ μ λ³΄κ° μ£Όμ΄μ‘μ λ, λμ C μμ λ³΄λΈ λ©μμ§λ₯Ό λ°κ² λλ λμμ κ°μλ λͺκ°, λμλ€μ΄ λͺ¨λ λ©μμ§λ₯Ό λ°λ λ°κΉμ§ 걸리λ μκ°μ μΌλ§μΈκ°
: ν λμμμ λ€λ₯Έ λμκΉμ§μ μ΅λ¨ 거리 λ¬Έμ λ‘ μΉν
: μ°μ μμ ν(HEAP)λ₯Ό μ΄μ©ν λ€μ΅μ€νΈλΌ μκ³ λ¦¬μ¦
- python
import heapq
import sys
input = sys.stdin.readline
INF = int(1e9) # 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
# λ
Έλμ κ°μ, κ°μ μ κ°μ, μμ λ
Έλλ₯Ό μ
λ ₯λ°κΈ°
n, m, start = map(int, input().split())
# κ° λ
Έλμ μ°κ²°λμ΄ μλ λ
Έλμ λν μ 보λ₯Ό λ΄λ 리μ€νΈλ₯Ό λ§λ€κΈ°
graph = [[] for i in range(n + 1)]
# μ΅λ¨ 거리 ν
μ΄λΈμ λͺ¨λ 무νμΌλ‘ μ΄κΈ°ν
distance = [INF] * (n + 1)
# λͺ¨λ κ°μ μ 보λ₯Ό μ
λ ₯λ°κΈ°
for _ in range(m):
x, y, z = map(int, input().split())
# Xλ² λ
Έλμμ Yλ² λ
Έλλ‘ κ°λ λΉμ©μ΄ ZλΌλ μλ―Έ
graph[x].append((y, z))
def dijkstra(start):
q = []
# μμ λ
Έλλ‘ κ°κΈ° μν μ΅λ¨ κ²½λ‘λ 0μΌλ‘ μ€μ νμ¬, νμ μ½μ
heapq.heappush(q, (0, start))
distance[start] = 0
while q: # νκ° λΉμ΄μμ§ μλ€λ©΄
# κ°μ₯ μ΅λ¨ κ±°λ¦¬κ° μ§§μ λ
Έλμ λν μ 보λ₯Ό κΊΌλ΄κΈ°
dist, now = heapq.heappop(q)
if distance[now] < dist:
continue
# νμ¬ λ
Έλμ μ°κ²°λ λ€λ₯Έ μΈμ ν λ
Έλλ€μ νμΈ
for i in graph[now]:
cost = dist + i[1]
# νμ¬ λ
Έλλ₯Ό κ±°μ³μ, λ€λ₯Έ λ
Έλλ‘ μ΄λνλ κ±°λ¦¬κ° λ 짧μ κ²½μ°
if cost < distance[i[0]]:
distance[i[0]] = cost
heapq.heappush(q, (cost, i[0]))
# λ€μ΅μ€νΈλΌ μκ³ λ¦¬μ¦μ μν
dijkstra(start)
# λλ¬ν μ μλ λ
Έλμ κ°μ
count = 0
# λλ¬ν μ μλ λ
Έλ μ€μμ, κ°μ₯ λ©λ¦¬ μλ λ
Έλμμ μ΅λ¨ 거리
max_distance = 0
for d in distance:
# λλ¬ν μ μλ λ
ΈλμΈ κ²½μ°
if d != 1e9:
count += 1
max_distance = max(max_distance, d)
# μμ λ
Έλλ μ μΈν΄μΌ νλ―λ‘ count - 1μ μΆλ ₯
print(count - 1, max_distance)
- c++
#include <bits/stdc++.h>
#define INF 1e9 // 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
using namespace std;
// λ
Έλμ κ°μ(N), κ°μ μ κ°μ(M), μμ λ
Έλ λ²νΈ(Start)
int n, m, start;
// κ° λ
Έλμ μ°κ²°λμ΄ μλ λ
Έλμ λν μ 보λ₯Ό λ΄λ λ°°μ΄
vector<pair<int, int> > graph[30001];
// μ΅λ¨ 거리 ν
μ΄λΈ λ§λ€κΈ°
int d[30001];
void dijkstra(int start) {
priority_queue<pair<int, int> > pq;
// μμ λ
Έλλ‘ κ°κΈ° μν μ΅λ¨ κ²½λ‘λ 0μΌλ‘ μ€μ νμ¬, νμ μ½μ
pq.push({0, start});
d[start] = 0;
while (!pq.empty()) { // νκ° λΉμ΄μμ§ μλ€λ©΄
// κ°μ₯ μ΅λ¨ κ±°λ¦¬κ° μ§§μ λ
Έλμ λν μ 보 κΊΌλ΄κΈ°
int dist = -pq.top().first; // νμ¬ λ
ΈλκΉμ§μ λΉμ©
int now = pq.top().second; // νμ¬ λ
Έλ
pq.pop();
// νμ¬ λ
Έλκ° μ΄λ―Έ μ²λ¦¬λ μ μ΄ μλ λ
ΈλλΌλ©΄ 무μ
if (d[now] < dist) continue;
// νμ¬ λ
Έλμ μ°κ²°λ λ€λ₯Έ μΈμ ν λ
Έλλ€μ νμΈ
for (int i = 0; i < graph[now].size(); i++) {
int cost = dist + graph[now][i].second;
// νμ¬ λ
Έλλ₯Ό κ±°μ³μ, λ€λ₯Έ λ
Έλλ‘ μ΄λνλ κ±°λ¦¬κ° λ 짧μ κ²½μ°
if (cost < d[graph[now][i].first]) {
d[graph[now][i].first] = cost;
pq.push(make_pair(-cost, graph[now][i].first));
}
}
}
}
int main(void) {
cin >> n >> m >> start;
// λͺ¨λ κ°μ μ 보λ₯Ό μ
λ ₯λ°κΈ°
for (int i = 0; i < m; i++) {
int x, y, z;
cin >> x >> y >> z;
// Xλ² λ
Έλμμ Yλ² λ
Έλλ‘ κ°λ λΉμ©μ΄ ZλΌλ μλ―Έ
graph[x].push_back({y, z});
}
// μ΅λ¨ 거리 ν
μ΄λΈμ λͺ¨λ 무νμΌλ‘ μ΄κΈ°ν
fill(d, d + 30001, INF);
// λ€μ΅μ€νΈλΌ μκ³ λ¦¬μ¦μ μν
dijkstra(start);
// λλ¬ν μ μλ λ
Έλμ κ°μ
int count = 0;
// λλ¬ν μ μλ λ
Έλ μ€μμ, κ°μ₯ λ©λ¦¬ μλ λ
Έλμμ μ΅λ¨ 거리
int maxDistance = 0;
for (int i = 1; i <= n; i++) {
// λλ¬ν μ μλ λ
ΈλμΈ κ²½μ°
if (d[i] != INF) {
count += 1;
maxDistance = max(maxDistance, d[i]);
}
}
// μμ λ
Έλλ μ μΈν΄μΌ νλ―λ‘ count - 1μ μΆλ ₯
cout << count - 1 << ' ' << maxDistance << '\n';
}
- java
import java.util.*;
class Node implements Comparable<Node> {
private int index;
private int distance;
public Node(int index, int distance) {
this.index = index;
this.distance = distance;
}
public int getIndex() {
return this.index;
}
public int getDistance() {
return this.distance;
}
// 거리(λΉμ©)κ° μ§§μ κ²μ΄ λμ μ°μ μμλ₯Ό κ°μ§λλ‘ μ€μ
@Override
public int compareTo(Node other) {
if (this.distance < other.distance) {
return -1;
}
return 1;
}
}
public class Main {
public static final int INF = (int) 1e9; // 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
// λ
Έλμ κ°μ(N), κ°μ μ κ°μ(M), μμ λ
Έλ λ²νΈ(Start)
public static int n, m, start;
// κ° λ
Έλμ μ°κ²°λμ΄ μλ λ
Έλμ λν μ 보λ₯Ό λ΄λ λ°°μ΄
public static ArrayList<ArrayList<Node>> graph = new ArrayList<ArrayList<Node>>();
// μ΅λ¨ 거리 ν
μ΄λΈ λ§λ€κΈ°
public static int[] d = new int[30001];
public static void dijkstra(int start) {
PriorityQueue<Node> pq = new PriorityQueue<>();
// μμ λ
Έλλ‘ κ°κΈ° μν μ΅λ¨ κ²½λ‘λ 0μΌλ‘ μ€μ νμ¬, νμ μ½μ
pq.offer(new Node(start, 0));
d[start] = 0;
while(!pq.isEmpty()) { // νκ° λΉμ΄μμ§ μλ€λ©΄
// κ°μ₯ μ΅λ¨ κ±°λ¦¬κ° μ§§μ λ
Έλμ λν μ 보 κΊΌλ΄κΈ°
Node node = pq.poll();
int dist = node.getDistance(); // νμ¬ λ
ΈλκΉμ§μ λΉμ©
int now = node.getIndex(); // νμ¬ λ
Έλ
// νμ¬ λ
Έλκ° μ΄λ―Έ μ²λ¦¬λ μ μ΄ μλ λ
ΈλλΌλ©΄ 무μ
if (d[now] < dist) continue;
// νμ¬ λ
Έλμ μ°κ²°λ λ€λ₯Έ μΈμ ν λ
Έλλ€μ νμΈ
for (int i = 0; i < graph.get(now).size(); i++) {
int cost = d[now] + graph.get(now).get(i).getDistance();
// νμ¬ λ
Έλλ₯Ό κ±°μ³μ, λ€λ₯Έ λ
Έλλ‘ μ΄λνλ κ±°λ¦¬κ° λ 짧μ κ²½μ°
if (cost < d[graph.get(now).get(i).getIndex()]) {
d[graph.get(now).get(i).getIndex()] = cost;
pq.offer(new Node(graph.get(now).get(i).getIndex(), cost));
}
}
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
start = sc.nextInt();
// κ·Έλν μ΄κΈ°ν
for (int i = 0; i <= n; i++) {
graph.add(new ArrayList<Node>());
}
// λͺ¨λ κ°μ μ 보λ₯Ό μ
λ ₯λ°κΈ°
for (int i = 0; i < m; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
int z = sc.nextInt();
// Xλ² λ
Έλμμ Yλ² λ
Έλλ‘ κ°λ λΉμ©μ΄ ZλΌλ μλ―Έ
graph.get(x).add(new Node(y, z));
}
// μ΅λ¨ 거리 ν
μ΄λΈμ λͺ¨λ 무νμΌλ‘ μ΄κΈ°ν
Arrays.fill(d, INF);
// λ€μ΅μ€νΈλΌ μκ³ λ¦¬μ¦μ μν
dijkstra(start);
// λλ¬ν μ μλ λ
Έλμ κ°μ
int count = 0;
// λλ¬ν μ μλ λ
Έλ μ€μμ, κ°μ₯ λ©λ¦¬ μλ λ
Έλμμ μ΅λ¨ 거리
int maxDistance = 0;
for (int i = 1; i <= n; i++) {
// λλ¬ν μ μλ λ
ΈλμΈ κ²½μ°
if (d[i] != INF) {
count += 1;
maxDistance = Math.max(maxDistance, d[i]);
}
}
// μμ λ
Έλλ μ μΈν΄μΌ νλ―λ‘ count - 1μ μΆλ ₯
System.out.println((count - 1) + " " + maxDistance);
}
}
< λ¬Έμ 2 > λ―Έλ λμ
: 1λ² λΆν° N λ²κΉμ§μ νμ¬κ° μλλ° νΉμ νμ¬λΌλ¦¬λ μλ‘ λλ‘λ₯Ό ν΅ν΄ μ°κ²°
: μ°κ²°λ 2κ°μ νμ¬λ μλ°©ν₯μΌλ‘ μ΄λ κ°λ₯
: ν맀μ Aλ 1λ² νμ¬μμ μΆλ°νμ¬ K νμ¬λ‘ κ°λ μ΅μ μ΄λμκ°μ μΆλ ₯
=> μ νμ μΈ μ΅λ¨ 거리 λ¬Έμ
=> νλ‘μ΄λ μμ μκ³ λ¦¬μ¦ μνν 1λ² λ Έλμμ X κΉμ§μ μ΅λ¨ 거리 + X μμ K κΉμ§μ μ΅λ¨ 거리 κ³μ°νμ¬ μΆλ ₯
- python
INF = int(1e9) # 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
# λ
Έλμ κ°μ λ° κ°μ μ κ°μλ₯Ό μ
λ ₯λ°κΈ°
n, m = map(int, input().split())
# 2μ°¨μ 리μ€νΈ(κ·Έλν νν)λ₯Ό λ§λ€κ³ , λͺ¨λ κ°μ 무νμΌλ‘ μ΄κΈ°ν
graph = [[INF] * (n + 1) for _ in range(n + 1)]
# μκΈ° μμ μμ μκΈ° μμ μΌλ‘ κ°λ λΉμ©μ 0μΌλ‘ μ΄κΈ°ν
for a in range(1, n + 1):
for b in range(1, n + 1):
if a == b:
graph[a][b] = 0
# κ° κ°μ μ λν μ 보λ₯Ό μ
λ ₯ λ°μ, κ·Έ κ°μΌλ‘ μ΄κΈ°ν
for _ in range(m):
# Aμ Bκ° μλ‘μκ² κ°λ λΉμ©μ 1μ΄λΌκ³ μ€μ
a, b = map(int, input().split())
graph[a][b] = 1
graph[b][a] = 1
# κ±°μ³ κ° λ
Έλ Xμ μ΅μ’
λͺ©μ μ§ λ
Έλ Kλ₯Ό μ
λ ₯λ°κΈ°
x, k = map(int, input().split())
# μ νμμ λ°λΌ νλ‘μ΄λ μμ
μκ³ λ¦¬μ¦μ μν
for k in range(1, n + 1):
for a in range(1, n + 1):
for b in range(1, n + 1):
graph[a][b] = min(graph[a][b], graph[a][k] + graph[k][b])
# μνλ κ²°κ³Όλ₯Ό μΆλ ₯
distance = graph[1][k] + graph[k][x]
# λλ¬ν μ μλ κ²½μ°, -1μ μΆλ ₯
if distance >= 1e9:
print("-1")
# λλ¬ν μ μλ€λ©΄, μ΅λ¨ 거리λ₯Ό μΆλ ₯
else:
print(distance)
- c++
#include <bits/stdc++.h>
#define INF 1e9 // 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
using namespace std;
// λ
Έλμ κ°μ(N), κ°μ μ κ°μ(M)
int n, m;
// 2μ°¨μ λ°°μ΄(κ·Έλν νν)λ₯Ό λ§λ€κΈ°
int graph[101][101];
int main(void) {
cin >> n >> m;
// μ΅λ¨ 거리 ν
μ΄λΈμ λͺ¨λ 무νμΌλ‘ μ΄κΈ°ν
for (int i = 0; i < 101; i++) {
fill(graph[i], graph[i] + 101, INF);
}
// μκΈ° μμ μμ μκΈ° μμ μΌλ‘ κ°λ λΉμ©μ 0μΌλ‘ μ΄κΈ°ν
for (int a = 1; a <= n; a++) {
for (int b = 1; b <= n; b++) {
if (a == b) graph[a][b] = 0;
}
}
// κ° κ°μ μ λν μ 보λ₯Ό μ
λ ₯ λ°μ, κ·Έ κ°μΌλ‘ μ΄κΈ°ν
for (int i = 0; i < m; i++) {
// Aμ Bκ° μλ‘μκ² κ°λ λΉμ©μ 1μ΄λΌκ³ μ€μ
int a, b;
cin >> a >> b;
graph[a][b] = 1;
graph[b][a] = 1;
}
// κ±°μ³ κ° λ
Έλ Xμ μ΅μ’
λͺ©μ μ§ λ
Έλ Kλ₯Ό μ
λ ₯λ°κΈ°
int x, k;
cin >> x >> k;
// μ νμμ λ°λΌ νλ‘μ΄λ μμ
μκ³ λ¦¬μ¦μ μν
for (int k = 1; k <= n; k++) {
for (int a = 1; a <= n; a++) {
for (int b = 1; b <= n; b++) {
graph[a][b] = min(graph[a][b], graph[a][k] + graph[k][b]);
}
}
}
// μνλ κ²°κ³Όλ₯Ό μΆλ ₯
int distance = graph[1][k] + graph[k][x];
// λλ¬ν μ μλ κ²½μ°, -1μ μΆλ ₯
if (distance >= INF) {
cout << "-1" << '\n';
}
// λλ¬ν μ μλ€λ©΄, μ΅λ¨ 거리λ₯Ό μΆλ ₯
else {
cout << distance << '\n';
}
}
- java
import java.util.*;
public class Main {
public static final int INF = (int) 1e9; // 무νμ μλ―Ένλ κ°μΌλ‘ 10μ΅μ μ€μ
// λ
Έλμ κ°μ(N), κ°μ μ κ°μ(M), κ±°μ³ κ° λ
Έλ(X), μ΅μ’
λͺ©μ μ§ λ
Έλ(K)
public static int n, m, x, k;
// 2μ°¨μ λ°°μ΄(κ·Έλν νν)λ₯Ό λ§λ€κΈ°
public static int[][] graph = new int[101][101];
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
m = sc.nextInt();
// μ΅λ¨ 거리 ν
μ΄λΈμ λͺ¨λ 무νμΌλ‘ μ΄κΈ°ν
for (int i = 0; i < 101; i++) {
Arrays.fill(graph[i], INF);
}
// μκΈ° μμ μμ μκΈ° μμ μΌλ‘ κ°λ λΉμ©μ 0μΌλ‘ μ΄κΈ°ν
for (int a = 1; a <= n; a++) {
for (int b = 1; b <= n; b++) {
if (a == b) graph[a][b] = 0;
}
}
// κ° κ°μ μ λν μ 보λ₯Ό μ
λ ₯ λ°μ, κ·Έ κ°μΌλ‘ μ΄κΈ°ν
for (int i = 0; i < m; i++) {
// Aμ Bκ° μλ‘μκ² κ°λ λΉμ©μ 1μ΄λΌκ³ μ€μ
int a = sc.nextInt();
int b = sc.nextInt();
graph[a][b] = 1;
graph[b][a] = 1;
}
x = sc.nextInt();
k = sc.nextInt();
// μ νμμ λ°λΌ νλ‘μ΄λ μμ
μκ³ λ¦¬μ¦μ μν
for (int k = 1; k <= n; k++) {
for (int a = 1; a <= n; a++) {
for (int b = 1; b <= n; b++) {
graph[a][b] = Math.min(graph[a][b], graph[a][k] + graph[k][b]);
}
}
}
// μνλ κ²°κ³Όλ₯Ό μΆλ ₯
int distance = graph[1][k] + graph[k][x];
// λλ¬ν μ μλ κ²½μ°, -1μ μΆλ ₯
if (distance >= INF) {
System.out.println(-1);
}
// λλ¬ν μ μλ€λ©΄, μ΅λ¨ 거리λ₯Ό μΆλ ₯
else {
System.out.println(distance);
}
}
}