Two Famous Companies

Time Limit: 15000ms
Memory Limit: 32768KB

This problem will be judged on HDU. Original ID: 4253
64-bit integer IO format: %I64d      Java class name: Main

 
In China, there are two companies offering the Internet service for the people from all cities: China Telecom and China Unicom. They both are planning to build cables between cities. Obviously, the government wants to connect all the cities in minimum costs. So the minister of finance Mr. B wants to choose some of the cable plans from the two companies and calculate the minimum cost needed to connect all the cities. Mr. B knows that N-1 cables should be built in order to connect all N cities of China. For some honorable reason, Mr. B should choose K cables from the China Telecom and the rest N-1-K cables from the China Unicom. Your job is to help Mr. B determine which cables should be built and the minimum cost to build them. You may assume that the solution always exists.

 

Input

Each test case starts with a line containing the number of cities N (1 <= N <= 50,000), number of cable plans M (N-1 <= M <= 100,000) and the number of required cables from China Telecom K (0 <= K <= N-1). This is followed by M lines, each containing four integers a, b, c, x (0 <= a, b <= N-1, a != b, 1 <= c <= 100, x in {0,1} indicating the pair of cities this cable will connect, the cost to build this cable and the company this cable plan belongs to. x=0 denotes that the cable plan belongs to China Telecom and x=1 denotes that the cable plan is from China Unicom.

 

Output

For each test case, display the case number and the minimum cost of the cable building.

 

Sample Input

  1. 2 2 1
  2. 0 1 1 1
  3. 0 1 2 0
  4. 2 2 0
  5. 0 1 1 1
  6. 0 1 2 0

Sample Output

  1. Case 1: 2
  2. Case 2: 1
Hint

In the first case, there are two cable plans between the only two cities, one from China Telecom and one from China Unicom. Mr. B needs to choose the one from China Telecom to satisfy the problem requirement even the cost is higher. In the second case, Mr. B must choose the cable from China Unicom, which leads the answer to 1.

Source

 
解题:最小生成树+二分。很不错的一题。。。在某个公司的边上增加一个值,直到取到了该公司指定的数目的边。
 
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <cmath>
  5. #include <algorithm>
  6. #include <climits>
  7. #include <vector>
  8. #include <queue>
  9. #include <cstdlib>
  10. #include <string>
  11. #include <set>
  12. #include <stack>
  13. #define LL long long
  14. #define pii pair<int,int>
  15. #define INF 0x3f3f3f3f
  16. using namespace std;
  17. const int maxn = ;
  18. struct arc{
  19. int u,v,w,id;
  20. arc(int uu = ,int vv = ,int ww = ,int iid = ){
  21. u = uu;
  22. v = vv;
  23. w = ww;
  24. id = iid;
  25. }
  26. bool operator<(const arc &tmp) const{
  27. return w < tmp.w;
  28. }
  29. };
  30. arc e[][maxn];
  31. int uf[maxn],n,m,k,tot1,tot2,cost;
  32. int Find(int x){
  33. if(x == uf[x]) return x;
  34. return uf[x] = Find(uf[x]);
  35. }
  36. bool uset(int u,int v){
  37. int tx = Find(u);
  38. int ty = Find(v);
  39. if(tx != ty) uf[tx] = ty;
  40. return tx != ty;
  41. }
  42. bool check(int delta){
  43. int i,j,cnt;
  44. for(i = ; i <= n; ++i) uf[i] = i;
  45. i = j = cnt = cost = ;
  46. arc tmp;
  47. while(i < tot1 || j < tot2){
  48. if(e[][i].w + delta <= e[][j].w){
  49. tmp = e[][i++];
  50. tmp.w += delta;
  51. }else tmp = e[][j++];
  52. if(uset(tmp.u,tmp.v)){
  53. cost += tmp.w;
  54. if(!tmp.id) cnt++;
  55. }
  56. }
  57. return cnt >= k;
  58. }
  59. int main() {
  60. int u,v,w,id,cs = ;
  61. while(~scanf("%d %d %d",&n,&m,&k)){
  62. for(int i = tot1 = tot2 = ; i < m; ++i){
  63. scanf("%d %d %d %d",&u,&v,&w,&id);
  64. if(id) e[][tot2++] = arc(u,v,w,id);
  65. else e[][tot1++] = arc(u,v,w,id);
  66. }
  67. e[][tot1].w = e[][tot2].w = INF;
  68. sort(e[],e[]+tot1);
  69. sort(e[],e[]+tot2);
  70. int low = -,high = ,mid,delta;
  71. while(low <= high){
  72. mid = (low + high)>>;
  73. if(check(mid)){
  74. delta = mid;
  75. low = mid + ;
  76. }else high = mid - ;
  77. }
  78. check(delta);
  79. printf("Case %d: %d\n",cs++,cost - delta*k);
  80. }
  81. return ;
  82. }
 

HDU 4253 Two Famous Companies的更多相关文章

  1. hdu 4253 Two Famous Companies BZOJ 2654 tree

    [题意]:给出n个点,m条边,边分为两种,一种是A公司的,一种是B公司的.边上有权值,问用n-1条边把n个点连起来的最小费用是多少,其中A公司的边刚好有k条.题目保证有解. 思路:我们发现,如果我们给 ...

  2. HDOJ 4253 Two Famous Companies 二分+MST

    题目意思:给出n个点,m条边,边分为两种,一种是A公司的,一种是B公司的.边上有权值, 问用n-1条边把n个点连起来的最小费用是多少,其中A公司的边刚好有k条.题目保证有解. 题解:题目意思很简单就是 ...

  3. HDU 4253-Two Famous Companies(二分+最小生成树)

    Description In China, there are two companies offering the Internet service for the people from all ...

  4. hdu 4255 A Famous Grid

    题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=4255 A Famous Grid Description Mr. B has recently dis ...

  5. HDU 4256 The Famous Clock

    The Famous Clock Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) ...

  6. HDU 4251 The Famous ICPC Team Again 主席树

    The Famous ICPC Team Again Problem Description   When Mr. B, Mr. G and Mr. M were preparing for the ...

  7. HDU 4294 A Famous Equation(DP)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4249 题目大意:给一个a+b=c的表达式,但是a.b.c中部分位的数字丢失,并用?代替,问有多少种方案 ...

  8. HDU 4248 A Famous Stone Collector 组合数学dp ****

    A Famous Stone Collector Time Limit: 30000/15000 MS (Java/Others)    Memory Limit: 32768/32768 K (Ja ...

  9. HDU 4251 The Famous ICPC Team Again(划分树)

    The Famous ICPC Team Again Time Limit: 30000/15000 MS (Java/Others)    Memory Limit: 32768/32768 K ( ...

随机推荐

  1. CodeForcesGym 100676H Capital City

    H. Capital City Time Limit: 3000ms Memory Limit: 262144KB This problem will be judged on CodeForcesG ...

  2. XML基本语法

    本节要点: 了解XML的文档声明 了解XML的元素.命名规则.属性.元素内容.处理指令等概念 1   XML文档声明 表示该文档是一个XML文档,以及遵循哪个XML版本的规范. 规范:<?xml ...

  3. apache 与 nginx的区别

    Nginx 轻量级,采用 C 进行编写,同样的 web 服务,会占用更少的内存及资源 抗并发,nginx 以 epoll and kqueue 作为开发模型,处理请求是异步非阻塞的,负载能力比 apa ...

  4. SQL--各种约束

    约束名称 含义 主键约束 定义一个唯一的标识符 外键约束 为了维护和主键表的数据完整性 check约束 限定表中某个列的值的范围 default约束 如果没有指定插入值,则插入默认值 unique约束 ...

  5. BA-siemens-apogee-ppcl

    adapts函数的使用 常规控制风机及阀门的程序是使用PID来调节,但是自适应算法能更好的调节. 西门子的自适应调节函数adapts用法如下: 以下文章为网络转载,原文链接地址http://news. ...

  6. windows系统中软件开发常用的软件

    1.windwos快速打开控制面板:热键+r打开运行框,输入control就打开windows的控制面板了 2.windows自带的远程桌面控制系统:mstsc -Microsoft terminal ...

  7. cocos2d-x 3.2 之 2048 —— 第五篇

    ***************************************转载请注明出处:http://blog.csdn.net/lttree************************** ...

  8. Windows 7 x64环境下JDK8安装过程

    Windows 7 x64环境下JDK8安装过程 下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads ...

  9. c11---位运算相关

    // // main.c // 03-原码反码补码 #include <stdio.h> int main(int argc, const char * argv[]) { // int占 ...

  10. hdoj--1018--Big Number(简单数学)

    Big Number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total ...