Air Portshttp://www.lightoj.com/volume_showproblem.php?problem=1059

2024-01-10 07:18

本文主要是介绍Air Portshttp://www.lightoj.com/volume_showproblem.php?problem=1059,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最小生成树变形,这一题,真他妈的恶心,由于没看清最后一句话,导致一直wa,,在修建机场和修路方面,如果修路的费用和修飞机场的相同,则优先考虑修飞机场,,

法一:

#include<iostream>
#include<string.h>
#include<string>
#include<algorithm>
#define pf printf
#include<cstdio>
#define N 100005
#define M 10005
using namespace std;
typedef struct node
{int x;int y;int len;bool operator<(node a)const{return len<a.len;}
}Node;
Node s[N];
int Father[M];
int n,m,cost;
int Find(int x)
{if(x==Father[x]) return x;return Father[x]=Find(Father[x]);
}
void in(int &a)
{char ch;while((ch=getchar())<'0'||ch>'9');for(a=0;ch>='0'&&ch<='9';ch=getchar()) a=a*10+ch-'0';
}
int main()
{int T;in(T);for(int k=1;k<=T;++k){in(n),in(m),in(cost);for(int i=0;i<=n;++i) Father[i]=i;for(int i=0;i!=m;++i) in(s[i].x),in(s[i].y),in(s[i].len);sort(s,s+m);int num=0;bool flag=false;long long ans=0;for(int i=0;i<m;++i){if(s[i].len>=cost) continue;if(num==n-1) {flag=1;break;}int x=Find(s[i].x);int y=Find(s[i].y);if(x!=y){num++;Father[x]=y;ans+=s[i].len;}}if(flag) pf("Case %d: %lld 1\n",k,ans+cost);else{int res=0;for(int i=1;i<=n;++i)if(i==Find(i)) res++;pf("Case %d: %lld %d\n",k,ans+res*cost,res);}}return 0;
}
#include<iostream>
#include<string.h>
#include<string>
#include<algorithm>
#define pf printf
#include<cstdio>
#define N 100005
#define M 10005
using namespace std;
typedef struct node
{int x;int y;int len;bool operator<(node a)const{return len<a.len;}
}Node;
Node s[N];
int Father[M];
int n,m,cost;
int Find(int x)
{if(x==Father[x]) return x;return Father[x]=Find(Father[x]);
}
void in(int &a)
{char ch;while((ch=getchar())<'0'||ch>'9');for(a=0;ch>='0'&&ch<='9';ch=getchar()) a=a*10+ch-'0';
}
int main()
{int T;in(T);for(int k=1;k<=T;++k){in(n),in(m),in(cost);for(int i=0;i<=n;++i) Father[i]=i;for(int i=0;i!=m;++i) in(s[i].x),in(s[i].y),in(s[i].len);sort(s,s+m);int num=0;long long ans=0;for(int j=0;j<m;j++){if(num==n-1) break;if(s[j].len>=cost) continue;int xx=Find(s[j].x),yy=Find(s[j].y);if(xx!=yy){num++;Father[xx]=yy;ans+=s[j].len;}}printf("Case %d: %lld %d\n",k,(ans+(n-num)*cost),n-num);}return 0;
}


这篇关于Air Portshttp://www.lightoj.com/volume_showproblem.php?problem=1059的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/589986

相关文章

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

uva 10025 The ? 1 ? 2 ? ... ? n = k problem(数学)

题意是    ?  1  ?  2  ?  ...  ?  n = k 式子中给k,? 处可以填 + 也可以填 - ,问最小满足条件的n。 e.g k = 12  - 1 + 2 + 3 + 4 + 5 + 6 - 7 = 12 with n = 7。 先给证明,令 S(n) = 1 + 2 + 3 + 4 + 5 + .... + n 暴搜n,搜出当 S(n) >=

消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法

消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法   消除安卓SDK更新时的“https://dl-ssl.google.com refused”异常的方法 [转载]原地址:http://blog.csdn.net/x605940745/article/details/17911115 消除SDK更新时的“

PHP原理之内存管理中难懂的几个点

PHP的内存管理, 分为俩大部分, 第一部分是PHP自身的内存管理, 这部分主要的内容就是引用计数, 写时复制, 等等面向应用的层面的管理. 而第二部分就是今天我要介绍的, zend_alloc中描写的关于PHP自身的内存管理, 包括它是如何管理可用内存, 如何分配内存等. 另外, 为什么要写这个呢, 因为之前并没有任何资料来介绍PHP内存管理中使用的策略, 数据结构, 或者算法. 而在我们

php中json_decode()和json_encode()

1.json_decode() json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0) json_decode — 对 JSON 格式的字符串进行编码 说明 mixed json_decode ( string $json [, bool $assoc ] ) 接受一个 JSON 格式的字符串并且把它转换为 PHP 变量 参数 json

如何将文件夹里的PHP代码放到一个文件里

find ./dir -name "*.php" -exec 'cat' {} \; > dir.out

PHP抓取网站图片脚本

方法一: <?phpheader("Content-type:image/jpeg"); class download_image{function read_url($str) { $file=fopen($str,"r");$result = ''; while(!feof($file)) { $result.=fgets($file,9999); } fclose($file); re

PHP防止SQL注入详解及防范

SQL 注入是PHP应用中最常见的漏洞之一。事实上令人惊奇的是,开发者要同时犯两个错误才会引发一个SQL注入漏洞。 一个是没有对输入的数据进行过滤(过滤输入),还有一个是没有对发送到数据库的数据进行转义(转义输出)。这两个重要的步骤缺一不可,需要同时加以特别关注以减少程序错误。 对于攻击者来说,进行SQL注入攻击需要思考和试验,对数据库方案进行有根有据的推理非常有必要(当然假设攻击者看不到你的

PHP防止SQL注入的方法(2)

如果用户输入的是直接插入到一个SQL语句中的查询,应用程序会很容易受到SQL注入,例如下面的例子: $unsafe_variable = $_POST['user_input'];mysql_query("INSERT INTO table (column) VALUES ('" . $unsafe_variable . "')"); 这是因为用户可以输入类似VALUE”); DROP TA

PHP防止SQL注入的方法(1)

(1)mysql_real_escape_string – 转义 SQL 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集 使用方法如下: $sql = "select count(*) as ctr from users where username ='".mysql_real_escape_string($username)."' and password='". mysql_r