NSOJ Constructing Roads(图论)
We know that there are already some roads between some villages and your job is the build some roads such that all the villages are connect and the length of all the roads built is minimum.
Input
Then there is an integer Q (0 <= Q <= N * (N + 1) / 2). Then come Q lines, each line contains two integers a and b (1 <= a < b <= N), which means the road between village a and village b has been built.
Output
Sample Input
- 3
- 0 990 692
- 990 0 179
- 692 179 0
- 1
- 1 2
Sample Output
- 179
最小生成树....先建图,之后再处理相同地点....只需要遍历一半就行....
时间超限:
- #include <vector>
- #include <map>
- #include <set>
- #include <algorithm>
- #include <iostream>
- #include <cstdio>
- #include <cmath>
- #include <cstdlib>
- #include <string>
- #include <cstring>
- #include <queue>
- using namespace std;
- #define INF 0x3f3f3f3f
- #define MAX 1000000
- int n,ans;
- int dis[],vis[],mp[][];
- void prim()
- {
- memset(vis,,sizeof(vis));
- memset(dis,INF,sizeof(dis));
- dis[]=;ans=;dis[]=INF;
- while(true){
- int m=;
- for(int i=; i<=n; i++){
- if(!vis[i] && (dis[i]<dis[m]))
- m=i;
- }
- if(m==)
- break;
- vis[m]=;
- ans+=dis[m];
- for(int i=; i<=n; i++)
- dis[i]=min(dis[i],mp[m][i]);
- }
- }
- int main()
- {
- int x,a,b;
- while(scanf("%d",&n)){
- if(n==)
- break;
- for(int i=; i<=n; i++){
- for(int j=; j<=n; j++){
- scanf("%d",&mp[i][j]);
- }
- }
- scanf("%d",&x);
- while(x--){
- scanf("%d%d",&a,&b);
- mp[a][b]=mp[b][a]=;
- }
- prim();
- printf("%d\n",ans);
- }
- }
AC代码:
- #include <vector>
- #include <map>
- #include <set>
- #include <algorithm>
- #include <iostream>
- #include <cstdio>
- #include <cmath>
- #include <cstdlib>
- #include <string>
- #include <cstring>
- #include <queue>
- using namespace std;
- #define INF 0x3f3f3f3f
- #define MAX 1000000
- int n,ans;
- int dis[],vis[],mp[][];
- void prim()
- {
- memset(vis,,sizeof(vis));
- memset(dis,INF,sizeof(dis));
- dis[]=;
- ans=;
- dis[]=INF;
- while(true){
- int m=;
- for(int i=; i<=n; i++){
- if(!vis[i] && dis[i]<dis[m])
- m=i;
- }
- if(m==)
- break;
- vis[m]=;
- ans+=dis[m];
- for(int i=; i<=n; i++)
- dis[i]=min(dis[i],mp[m][i]);
- }
- }
- int main()
- {
- int x,a,b;
- while(scanf("%d",&n)==){
- for(int i=; i<=n; i++){
- for(int j=; j<=n; j++){
- scanf("%d",&mp[i][j]);
- }
- }
- scanf("%d",&x);
- while(x--){
- scanf("%d%d",&a,&b);
- mp[a][b]=mp[b][a]=;
- }
- prim();
- printf("%d\n",ans);
- }
- }
NSOJ Constructing Roads(图论)的更多相关文章
- Constructing Roads——F
F. Constructing Roads There are N villages, which are numbered from 1 to N, and you should build som ...
- Constructing Roads In JGShining's Kingdom(HDU1025)(LCS序列的变行)
Constructing Roads In JGShining's Kingdom HDU1025 题目主要理解要用LCS进行求解! 并且一般的求法会超时!!要用二分!!! 最后蛋疼的是输出格式的注 ...
- [ACM] hdu 1025 Constructing Roads In JGShining's Kingdom (最长递增子序列,lower_bound使用)
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65 ...
- HDU 1102 Constructing Roads
Constructing Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Other ...
- Constructing Roads (MST)
Constructing Roads Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u ...
- HDU 1025 Constructing Roads In JGShining's Kingdom(二维LIS)
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65 ...
- hdu--(1025)Constructing Roads In JGShining's Kingdom(dp/LIS+二分)
Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65 ...
- POJ 2421 Constructing Roads (最小生成树)
Constructing Roads Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u ...
- hdu 1102 Constructing Roads Kruscal
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1102 题意:这道题实际上和hdu 1242 Rescue 非常相似,改变了输入方式之后, 本题实际上更 ...
随机推荐
- .net机试题总结
1.下面是一个由*号组成的4行倒三角形图案.要求:1.输入倒三角形的行数,行数的取值3-21之间,对于非法的行数,要求抛出提示“非法行数!”:2.在屏幕上打印这个指定了行数的倒三角形. ******* ...
- 冒泡排序java
先对冒泡排序做一个简单的解释,然后是代码的实现.解释出资<java的数据结构和算法>,大家可以看看. 排序类: package com.dxx.order; public class Bu ...
- GCD code block
在这里积累一些片段,由于备忘录. + (DRClass *)sharedDR{ //创建小黑.正常ap模式仅仅有一个小黑,so static DRClass *aDR = nil; static di ...
- malloc使用方法
malloc使用方法 须要包括头文件: #include 'stdlib.h' 函数声明(函数原型): void *malloc(int size); 说明:malloc 向系统申请分配指定size个 ...
- JavaFX它ListView使用
ListView它是通过同一控制非.在JavaFX在.ListView此外,它拥有非常丰富的功能.下列.让我们来看看如何使用ListView. ListView位于javafx.scene.contr ...
- 华为上机题汇总----java
以下华为上机题目都是网上整理得到的,代码都是自己调试过的,由于网上java答案较少,欢迎大家批评指正,也希望对准备华为上机的童鞋们有一点点帮助.在练习的过程中成长,加油!~~ 第1题:输入字 ...
- Apple Watch 2.0 数据通讯
经常会碰到Watch app和WatchKit extension需要访问同一个文件.比如,使用一个自定义的字体,播放多媒体文件.有两种方法完成这个任务. 设计的时候,每个包放一份文件.它们分别访问自 ...
- redis源代码解读之内存管理————zmalloc文件
本文章主要记录本人在看redis源代码的一些理解和想法.由于功力有限,肯定会出现故障,所以.希望高手给出指正. 第一篇就是内存相关的介绍.由于我喜欢先看一些组件的东西,再看总体的流程. 先上一下代码吧 ...
- all about AIX MPIO
Multipath I/O (多路径) 在计算机存储技术里,多路径提供了容错和性能提高,在计算机系统里CPU有多条物理路径通道,块存储设备通过总线,控制器,交换设备以及桥接设备来连接. ...
- 【iOS】Web Color 的 Swift 实现
用Swift语言重写Web Color这个类. 这次是用函数实现的,感觉也非常简洁.眼下(2014.6.28) Xcode 6的方法提示还不健全,就仅仅实现了用颜色名字创建颜色的功能. 最新代码&am ...