并查集( Roads and Libraries locked)

来源:互联网 发布:淘宝的游戏藏宝湾 编辑:程序博客网 时间:2024/06/06 01:59

The Ruler of HackerLand believes that every citizen of the country should have access to a library. Unfortunately, HackerLand was hit by a tornado that destroyed all of its libraries and obstructed its roads! As you are the greatest programmer of HackerLand, the ruler wants your help to repair the roads and build some new libraries efficiently.

HackerLand has cities numbered from to . The cities are connected by bidirectional roads. A citizen has access to a library if:

  • Their city contains a library.
  • They can travel by road from their city to a city containing a library.

The following figure is a sample map of HackerLand where the dotted lines denote obstructed roads:

image

The cost of repairing any road is dollars, and the cost to build a library in any city is dollars.

You are given queries, where each query consists of a map of HackerLand and value of and .

For each query, find the minimum cost of making libraries accessible to all the citizens and print it on a new line.

Input Format

The first line contains a single integer, , denoting the number of queries. The subsequent lines describe each query in the following format:

  • The first line contains four space-separated integers describing the respective values of(the number of cities), (the number of roads), (the cost to build a library), and (the cost to repair a road).
  • Each line of the subsequent lines contains two space-separated integers, and , describing a bidirectional road connecting cities and .

Constraints

  • Each road connects two distinct cities.

Output Format

For each query, print an integer denoting the minimum cost of making libraries accessible to all the citizens on a new line.

Sample Input

23 3 2 11 23 12 36 6 2 51 33 42 41 22 35 6

Sample Output

412

Explanation

We perform the following queries:

  1. HackerLand contains cities connected by bidirectional roads. The price of building a library is and the price for repairing a road is .
    image

    The cheapest way to make libraries accessible to all is to:

    • Build a library in city at a cost of .
    • Repair the road between cities and at a cost of .
    • Repair the road between cities and at a cost of .

    This gives us a total cost of . Note that we don't need to repair the road between cities and because we repaired the roads connecting them to city !

  2. In this scenario it's optimal to build a library in each city because the cost of building a library () is less than the cost of repairing a road (). image

    There are cities, so the total cost is .

就是并查集的应用,当见图书馆的钱小于修路的钱时,直接输出城镇数乘以图书馆数。否则, 就利用并查集将城镇分类,每一个集合有一个图书馆,其他的均修路。

#include <bits/stdc++.h>#define N 100005using namespace std;int pre[N];int find(int t)   //查找根节点{    if(t == pre[t])        return t;   //返回根节点    return pre[t] = find(pre[t]); //压缩路径}int main(){    int q, n, m;    long long cl, cr, x, y, a, b;    cin >> q;    while(q--)    {        cin >> n >> m >> cr >> cl;        if(cr <= cl)        {            printf("%lld\n", cr * n);            for(int i = 0; i < m; i++)                cin >> x >> y;        }        else        {            long long ans = 0;            for(int i = 0; i <= n; i++)                pre[i] = i;            for(int i = 0; i < m; i++)            {                cin >> x >> y;                a = find(x);                b = find(y);      //寻找根节点                if(a != b)      //两者不连通将其联通                {                    pre[a] = b;                    ans += cl;                }            }            for(int i = 1; i <= n; i++)                if(pre[i] == i)                    ans += cr;            printf("%lld\n", ans);        }    }    return 0;}


原创粉丝点击