HDU 4253 Two Famous Companies
Two Famous Companies
This problem will be judged on HDU. Original ID: 4253
64-bit integer IO format: %I64d Java class name: Main
Input
Output
Sample Input
- 2 2 1
- 0 1 1 1
- 0 1 2 0
- 2 2 0
- 0 1 1 1
- 0 1 2 0
Sample Output
- Case 1: 2
- Case 2: 1
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
- #include <iostream>
- #include <cstdio>
- #include <cstring>
- #include <cmath>
- #include <algorithm>
- #include <climits>
- #include <vector>
- #include <queue>
- #include <cstdlib>
- #include <string>
- #include <set>
- #include <stack>
- #define LL long long
- #define pii pair<int,int>
- #define INF 0x3f3f3f3f
- using namespace std;
- const int maxn = ;
- struct arc{
- int u,v,w,id;
- arc(int uu = ,int vv = ,int ww = ,int iid = ){
- u = uu;
- v = vv;
- w = ww;
- id = iid;
- }
- bool operator<(const arc &tmp) const{
- return w < tmp.w;
- }
- };
- arc e[][maxn];
- int uf[maxn],n,m,k,tot1,tot2,cost;
- int Find(int x){
- if(x == uf[x]) return x;
- return uf[x] = Find(uf[x]);
- }
- bool uset(int u,int v){
- int tx = Find(u);
- int ty = Find(v);
- if(tx != ty) uf[tx] = ty;
- return tx != ty;
- }
- bool check(int delta){
- int i,j,cnt;
- for(i = ; i <= n; ++i) uf[i] = i;
- i = j = cnt = cost = ;
- arc tmp;
- while(i < tot1 || j < tot2){
- if(e[][i].w + delta <= e[][j].w){
- tmp = e[][i++];
- tmp.w += delta;
- }else tmp = e[][j++];
- if(uset(tmp.u,tmp.v)){
- cost += tmp.w;
- if(!tmp.id) cnt++;
- }
- }
- return cnt >= k;
- }
- int main() {
- int u,v,w,id,cs = ;
- while(~scanf("%d %d %d",&n,&m,&k)){
- for(int i = tot1 = tot2 = ; i < m; ++i){
- scanf("%d %d %d %d",&u,&v,&w,&id);
- if(id) e[][tot2++] = arc(u,v,w,id);
- else e[][tot1++] = arc(u,v,w,id);
- }
- e[][tot1].w = e[][tot2].w = INF;
- sort(e[],e[]+tot1);
- sort(e[],e[]+tot2);
- int low = -,high = ,mid,delta;
- while(low <= high){
- mid = (low + high)>>;
- if(check(mid)){
- delta = mid;
- low = mid + ;
- }else high = mid - ;
- }
- check(delta);
- printf("Case %d: %d\n",cs++,cost - delta*k);
- }
- return ;
- }
HDU 4253 Two Famous Companies的更多相关文章
- hdu 4253 Two Famous Companies BZOJ 2654 tree
[题意]:给出n个点,m条边,边分为两种,一种是A公司的,一种是B公司的.边上有权值,问用n-1条边把n个点连起来的最小费用是多少,其中A公司的边刚好有k条.题目保证有解. 思路:我们发现,如果我们给 ...
- HDOJ 4253 Two Famous Companies 二分+MST
题目意思:给出n个点,m条边,边分为两种,一种是A公司的,一种是B公司的.边上有权值, 问用n-1条边把n个点连起来的最小费用是多少,其中A公司的边刚好有k条.题目保证有解. 题解:题目意思很简单就是 ...
- HDU 4253-Two Famous Companies(二分+最小生成树)
Description In China, there are two companies offering the Internet service for the people from all ...
- hdu 4255 A Famous Grid
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=4255 A Famous Grid Description Mr. B has recently dis ...
- HDU 4256 The Famous Clock
The Famous Clock Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) ...
- 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 ...
- HDU 4294 A Famous Equation(DP)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4249 题目大意:给一个a+b=c的表达式,但是a.b.c中部分位的数字丢失,并用?代替,问有多少种方案 ...
- HDU 4248 A Famous Stone Collector 组合数学dp ****
A Famous Stone Collector Time Limit: 30000/15000 MS (Java/Others) Memory Limit: 32768/32768 K (Ja ...
- HDU 4251 The Famous ICPC Team Again(划分树)
The Famous ICPC Team Again Time Limit: 30000/15000 MS (Java/Others) Memory Limit: 32768/32768 K ( ...
随机推荐
- CodeForcesGym 100676H Capital City
H. Capital City Time Limit: 3000ms Memory Limit: 262144KB This problem will be judged on CodeForcesG ...
- XML基本语法
本节要点: 了解XML的文档声明 了解XML的元素.命名规则.属性.元素内容.处理指令等概念 1 XML文档声明 表示该文档是一个XML文档,以及遵循哪个XML版本的规范. 规范:<?xml ...
- apache 与 nginx的区别
Nginx 轻量级,采用 C 进行编写,同样的 web 服务,会占用更少的内存及资源 抗并发,nginx 以 epoll and kqueue 作为开发模型,处理请求是异步非阻塞的,负载能力比 apa ...
- SQL--各种约束
约束名称 含义 主键约束 定义一个唯一的标识符 外键约束 为了维护和主键表的数据完整性 check约束 限定表中某个列的值的范围 default约束 如果没有指定插入值,则插入默认值 unique约束 ...
- BA-siemens-apogee-ppcl
adapts函数的使用 常规控制风机及阀门的程序是使用PID来调节,但是自适应算法能更好的调节. 西门子的自适应调节函数adapts用法如下: 以下文章为网络转载,原文链接地址http://news. ...
- windows系统中软件开发常用的软件
1.windwos快速打开控制面板:热键+r打开运行框,输入control就打开windows的控制面板了 2.windows自带的远程桌面控制系统:mstsc -Microsoft terminal ...
- cocos2d-x 3.2 之 2048 —— 第五篇
***************************************转载请注明出处:http://blog.csdn.net/lttree************************** ...
- Windows 7 x64环境下JDK8安装过程
Windows 7 x64环境下JDK8安装过程 下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads ...
- c11---位运算相关
// // main.c // 03-原码反码补码 #include <stdio.h> int main(int argc, const char * argv[]) { // int占 ...
- hdoj--1018--Big Number(简单数学)
Big Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total ...