Game Develop

[Algorithm]Baekjoon 1647 :: 도시 분할 계획 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 1647 :: 도시 분할 계획

MaxLevel 2024. 1. 31. 12:51

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

 

1647번: 도시 분할 계획

첫째 줄에 집의 개수 N, 길의 개수 M이 주어진다. N은 2이상 100,000이하인 정수이고, M은 1이상 1,000,000이하인 정수이다. 그 다음 줄부터 M줄에 걸쳐 길의 정보가 A B C 세 개의 정수로 주어지는데 A번

www.acmicpc.net

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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
 
using namespace std;
 
struct Node
{
    int node1;
    int node2;
    int cost;
};
 
int parents[100001= { 0 };
 
int FindParent(int node)
{
    if (parents[node] == node)
    {
        return node;
    }
 
    return parents[node] = FindParent(parents[node]);
}
 
bool CompareParents(int node1, int node2)
{
    if (FindParent(node1) == FindParent(node2)) return true;
    else return false;
}
 
void UnionParents(int node1, int node2)
{
    node1 = FindParent(node1);
    node2 = FindParent(node2);
    
    if (node1 < node2)
    {
        parents[node2] = node1;
    }
    else
    {
        parents[node1] = node2;
    }
}
 
bool cmp(const Node& a, const Node& b)
{
    return a.cost < b.cost;
}
 
int n, m;
vector<Node> nodes;
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
 
    cin >> n >> m;
 
    for (int i = 1; i <= n; ++i)
    {
        parents[i] = i;
    }
 
    for (int i = 0; i < m; ++i)
    {
        int a, b, c;
        cin >> a >> b >> c;
        
        nodes.push_back({ a,b,c });
    }
 
    sort(nodes.begin(), nodes.end(), cmp);
 
    int answer = 0;
    int maxCost = 0;
 
    for (int i = 0; i < nodes.size(); ++i)
    {
        if (CompareParents(nodes[i].node1, nodes[i].node2) == false)
        {
            answer += nodes[i].cost;    
            maxCost = max(maxCost, nodes[i].cost);
            UnionParents(nodes[i].node1, nodes[i].node2);
            --n;
        }
 
        if (n == 1break;
    }
 
    cout << answer - maxCost;
}
 
 
 
 
cs

 

문제를 읽자마자 MST가 생각났다. 다만, 두 마을로 분할한다는 점에서 어떻게해야할까 생각하다가, 어차피 양방향간선인 하나의 그래프니까, 가장 비싼가중치 하나만 뚝 자르면 되지않을까? 하고 코드를 작성하고 제출했는데 통과했다.