• POJ 3723 Conscription


    Conscription

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Java/Other)
    Total Submission(s) : 2   Accepted Submission(s) : 1
    Problem 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
    <div><p>The first line of input is the number of test case.<br>The first line of each test case contains three integers, <i>N</i>, <i>M</i> and <i>R</i>.<br>Then <i>R</i> lines followed, each contains three integers <i>x<sub>i</sub></i>, <i>y<sub>i</sub></i> and <i>d<sub>i</sub></i>.<br>There is a blank line before each test case.<br></p><p>1 ≤ <i>N</i>, <i>M</i> ≤ 10000<br>0 ≤ <i>R</i> ≤ 50,000<br>0 ≤ <i>x<sub>i</sub></i> < <i>N</i><br>0 ≤ <i>y<sub>i</sub></i> < <i>M</i><br>0 < <i>d<sub>i</sub></i> < 10000<br></p>
     

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

    Sample Input
    2 5 5 8 4 3 6831 1 3 4583 0 0 6592 0 1 3063 3 3 4975 1 3 2049 4 2 2104 2 2 781 5 5 10 2 4 9820 3 2 6236 3 1 8864 2 4 8326 2 0 5156 2 0 1463 4 1 2439 0 4 4373 3 4 8889 2 4 3133
     

    Sample Output
    71071 54223
     

    题意

    一共要招募n+m个士兵,原则上每招募一个士兵要花费10000元,但是假如在已经招募的士兵中存在与他关系亲密的人,那么就可以少花点钱,这种关系对一个士兵最多只能用一次,问最少可以花费多少钱把士兵招募齐。

    题解

    男女士兵存在亲密关系的话就可以少花点钱,找到一种招募的顺序,可以使亲密度最高,那么就可以节省最多的钱。把男士兵处理一下,避免和女士兵的编号重复了,这样就把问题转换成了最小生成树问题,记得把亲密度取反,求最小权值的时候。

     1 #include<iostream>
     2 #include<queue>
     3 #include<cstdio>
     4 #include<cstring>
     5 #include<string>
     6 #include<cmath>
     7 #include<string>
     8 #include<cctype>
     9 #include<algorithm>
    10 #include<vector>
    11 using namespace std;
    12 int par[30005];
    13 int ranke[30005];
    14 struct node
    15 {
    16     int u, v, w;
    17 };
    18 vector<node> s;
    19 bool cmp( node a, node b)
    20 {
    21     return a.w < b.w;
    22 }
    23 int find(int x)
    24 {
    25     if (par[x] == x) return x;
    26     else
    27         return par[x] = find(par[x]);
    28 }
    29 void unite(int x, int y)
    30 {
    31     int a = find(x);
    32     int b = find(y);
    33     if (a == b) return;
    34     if (ranke[a]> ranke[b]) par[b] = a;
    35     else
    36     {
    37         par[a] = b;
    38         if (ranke[a] == ranke[b]) ranke[b]++;
    39     }
    40 }
    41 int main()
    42 {
    43     int t;
    44     scanf("%d",&t);//cin又超时
    45     while (t--)
    46     {
    47         int n1, n2, m;
    48         scanf("%d %d %d", &n1, &n2, &m);
    49         int i;
    50         for (i = 0; i<30000; i++) { par[i] = i; ranke[i] = 0; }
    51         s.clear();
    52         for (i = 1; i <= m; i++)
    53         {
    54             node x;
    55             scanf("%d %d %d", &x.u, &x.v, &x.w);
    56             x.u += 10002;//为了与女区分
    57             x.w *= -1;//负处理
    58             s.push_back(x);
    59         }
    60         long long ans = (n1 + n2) * 10000;
    61         long long res = 0;
    62         sort(s.begin(), s.end(), cmp);
    63         for (i = 0; i <s.size(); i++)
    64         {
    65             node x = s[i];
    66             if (find(x.u) != find(x.v))
    67             {
    68                 unite(x.u, x.v);
    69                 res += x.w;
    70             }
    71         }
    72         printf("%lld
    
    ", ans + res);
    73     }
    74     return 0;
    75 }
  • 相关阅读:
    STS 创建 Maven 项目填坑
    JeeSite | 访问控制权限
    《Spring + MyBatis 企业应用实战》书评
    MyBatis-Generator 用法介绍
    Java描述数据结构之链表的增删改查
    Java中的Object类的几个方法
    设计模式之策略模式(Strategy Pattern)
    设计模式之模板方法(Template Method)
    JeeSite | 数据分页与翻页
    day 19
  • 原文地址:https://www.cnblogs.com/caiyishuai/p/8438804.html
Copyright © 2020-2023  润新知