백준문제풀이/Dijkstrea

1922번-네트워크 연결

반응형

문제

https://www.acmicpc.net/problem/1922

 

1922번: 네트워크 연결

이 경우에 1-3, 2-3, 3-4, 4-5, 4-6을 연결하면 주어진 output이 나오게 된다.

www.acmicpc.net


접근방법

1) 접근 사고

 

2) 시간 복잡도

 

3) 배운 점

 

4) PS


정답 코드

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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include<bits/stdc++.h>
#define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define pii pair<int,int>
#define mp(X,Y) make_pair(X,Y)
#define mt(X,Y) make_tuple(X,Y)
#define mtt(X,Y,Z) make_tuple(X,Y,Z)
#define ll long long
#define sz(v) (int)(v).size()
 
using namespace std;
const int INF = 987654321;
const int MAX = 1002;
int n, m;
int parent[MAX];
 
struct info{
    int cost;
    int start;
    int finish;
};
 
vector<info> edge;
bool operator < (info a, info b)
{넽
    if(a.cost != b.cost)
        return a.cost < b.cost;
    return false;
}
 
int find(int c)
{
    if(parent[c] == c)
        return c;
    else
        return parent[c] = find(parent[c]);
}
 
bool merge(int c, int p)
{
    c = find(c);
    p = find(p);
 
    if(c != p)
        parent[c] = p;
    else
        return false;
 
    return true;
}
 
int main(void)
{
    fastio;
    cin >> n >> m;
 
    for(int i = 1; i <= n; i++)
        parent[i] = i;
 
    for(int i = 0; i < m; i++)
    {
        int start, finish , cost;
        cin >> start >> finish >> cost;
        edge.push_back({cost, start, finish});
    }
 
    sort(edge.begin(), edge.end());
 
    int ret = 0;
    for(auto cur : edge)
    {
        if(merge(cur.start, cur.finish))
            ret += cur.cost;
    }
    cout << ret <<"\n";
}
cs
반응형

'백준문제풀이 > Dijkstrea' 카테고리의 다른 글

5719번-거의 최단 경로  (0) 2021.08.20
2211번-네트워크 복구  (0) 2021.08.19
1916번-최소 비용 구하기  (0) 2021.08.19
1854번-K번째 최단경로 찾기  (0) 2021.08.19
1753번-최단경로  (0) 2021.08.19