POJ3723 Conscription 【并查集】

来源:互联网 发布:javascript 快速入门 编辑:程序博客网 时间:2024/05/29 19:57

Conscription
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 8071 Accepted: 2810

Description

Windy has a country, and he wants to build an army to protect his country. He has picked up N girls and M boys and wants to collect them to be his soldiers. To collect a soldier without any privilege, he must pay 10000 RMB. There are some relationships between girls and boys and Windy can use these relationships to reduce his cost. If girl x and boy y have a relationship d and one of them has been collected, Windy can collect the other one with 10000-d RMB. Now given all the relationships between girls and boys, your assignment is to find the least amount of money Windy has to pay. Notice that only one relationship can be used when collecting one soldier.

Input

The first line of input is the number of test case.
The first line of each test case contains three integers, NM and R.
Then R lines followed, each contains three integers xiyi and di.
There is a blank line before each test case.

1 ≤ NM ≤ 10000
0 ≤ R ≤ 50,000
0 ≤ xi < N
0 ≤ yi < M
0 < di < 10000

Output

For each test case output the answer in a single line.

Sample Input

25 5 84 3 68311 3 45830 0 65920 1 30633 3 49751 3 20494 2 21042 2 7815 5 102 4 98203 2 62363 1 88642 4 83262 0 51562 0 14634 1 24390 4 43733 4 88892 4 3133

Sample Output

7107154223

Source

POJ Monthly Contest – 2009.04.05, windy7926778

题意:有N个女孩M个男孩去报名,每个人报名花费10000,但是如果未报名的小孩跟已报名的小孩中有关系亲密的异性,那么可以少花一些钱。给出若干男女关系之间的1~9999亲密度,报名费用为10000-(已报名的人中跟自己亲密度的最大值)。求所有人的报名费用和的最小值。

题解:不能因为看到男女关系就朝二分图想,实际上这题用的是最小生成树思想,尽管最后的结果可能是森林,只需让ans+=森林个数*10000;

#include <stdio.h>#include <string.h>#include <algorithm>#define maxn 20010#define maxm 100010#define COST 10000int N, M, R, id;int pre[maxn];struct Node {    int u, v, w;} E[maxm];bool cmp(Node a, Node b) {    return a.w < b.w;}void addEdge(int u, int v, int w) {    E[id].u = u; E[id].v = v; E[id++].w = w;}void getMap() {    int x, y, d; id = 0;    while(R--) {        scanf("%d%d%d", &x, &y, &d);        addEdge(x, y + N, COST - d);    }}int ufind(int k) {    int a = k, b;    while(pre[k] != -1) k = pre[k];    while(a != k) {        b = pre[a];        pre[a] = k;        a = b;    }    return k;}bool same(int x, int y) {    return ufind(x) == ufind(y);}void unite(int x, int y) {    x = ufind(x);    y = ufind(y);    if(x != y) pre[y] = x;}void Kruskal() {    int cnt = N + M, i, x, y, ans = 0;    memset(pre, -1, sizeof(int) * (N + M));    std::sort(E, E + id, cmp);    for(i = 0; i < id; ++i) {        if(!same(E[i].u, E[i].v)) {            unite(E[i].u, E[i].v);            ans += E[i].w;            if(--cnt == 1) break;        }    }    printf("%d\n", ans + COST * cnt);}int main() {    // freopen("stdin.txt", "r", stdin);    int T;    scanf("%d", &T);    while(T--) {        scanf("%d%d%d", &N, &M, &R); // G B        getMap();        Kruskal();    }    return 0;}


0 0
原创粉丝点击