[ACM_图论] Domino Effect (POJ1135 Dijkstra算法 SSSP 单源最短路算法 中等 模板)
Description Did you know that you can use domino bones for other things besides playing Dominoes? Take a number of dominoes and build a row by standing them on end with only a small distance in between. If you do it right, you can tip the first domino and cause all others to fall down in succession (this is where the phrase ``domino effect'' comes from).
While this is somewhat pointless with only a few dominoes, some people went to the opposite extreme in the early Eighties. Using millions of dominoes of different colors and materials to fill whole halls with elaborate patterns of falling dominoes, they created (short-lived) pieces of art. In these constructions, usually not only one but several rows of dominoes were falling at the same time. As you can imagine, timing is an essential factor here. It is now your task to write a program that, given such a system of rows formed by dominoes, computes when and where the last domino falls. The system consists of several ``key dominoes'' connected by rows of simple dominoes. When a key domino falls, all rows connected to the domino will also start falling (except for the ones that have already fallen). When the falling rows reach other key dominoes that have not fallen yet, these other key dominoes will fall as well and set off the rows connected to them. Domino rows may start collapsing at either end. It is even possible that a row is collapsing on both ends, in which case the last domino falling in that row is somewhere between its key dominoes. You can assume that rows fall at a uniform rate. Input The input file contains descriptions of several domino systems. The first line of each description contains two integers: the number n of key dominoes (1 <= n < 500) and the number m of rows between them. The key dominoes are numbered from 1 to n. There is at most one row between any pair of key dominoes and the domino graph is connected, i.e. there is at least one way to get from a domino to any other domino by following a series of domino rows.
The following m lines each contain three integers a, b, and l, stating that there is a row between key dominoes a and b that takes l seconds to fall down from end to end. Each system is started by tipping over key domino number 1. The file ends with an empty system (with n = m = 0), which should not be processed. Output For each case output a line stating the number of the case ('System #1', 'System #2', etc.). Then output a line containing the time when the last domino falls, exact to one digit to the right of the decimal point, and the location of the last domino falling, which is either at a key domino or between two key dominoes(in this case, output the two numbers in ascending order). Adhere to the format shown in the output sample. The test data will ensure there is only one solution. Output a blank line after each system.
Sample Input 2 1 Sample Output System #1 Source |
题目意思是每组有n个关键多米诺骨牌和m行骨牌,每行骨牌全部倒下要t秒(这里可以把关键骨牌理解成结点,把行理解成连接两个结点的带权边),然后从第一个结点推倒多米诺骨牌,问最后停在哪里(结点或边上)和全部倒下花费的时间。显然这题是单源最短路问题,首先用Dijkstra算出从结点1开始到其它所有点的时间d[],接下来分为2种情况:(1):最后一个骨牌倒的在结点,那么答案就是max{d[]},停在的点就是max{d[]}对应的结点;(2):停在边上,就暴力所有的边,求所有停在边xy上的时间(d[x]+d[y]+w[x][y])/2的最大值就是最后要花费的时间,具体代码如下:
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#define MAX 600
#define INF 0x7FFFFFFF
# define ePS 1e-
using namespace std;
int Min(int x , int y){
if(x<y)return x;
return y;
}
int n,m;
int w[MAX][MAX],v[MAX],d[MAX];//边的信息(w[i][j]表示i->j的距离,INF表示不通),标记,最短距离存放 void dijkstra(int u0)//源点为u0的Single-Source Shortest Paths
{
memset(v,,sizeof(v)); //清除所有点的标号
for(int i=;i<=n;i++)d[i]=(i==u0 ? :INF);//设d[u0]=0,其它d[i]=INF;
for(int i=;i<=n;i++){//循环n次
int x,min=INF;
for(int y=;y<=n;y++)if(!v[y] && d[y]<=min)min=d[x=y];//1在所有未标号的节点中,选出d值最小的节点x
v[x]=;//2给出节点x标记//3对于从x出发的所有边(x,y),更新d[y]=min{d[y],d[x]+w(x,y)}
for(int y=;y<=n;y++)if(!v[y] && w[x][y]<INF)d[y]=Min(d[y],d[x]+w[x][y]);
}
}
//----------------------------------------------------------------------------------------
int main(){
int tt = ;
while(cin>>n>>m){
if(n==&&m==)break;
for(int i=;i<=n;i++){//初始化
for(int j=;j<=n;j++){
if(i==j)w[i][j]=;
else w[i][j]=INF;
}
}
for(int i=;i<m;i++){//构图edge[a][b]=c:a->b时间为c
int a,b,c;
cin>>a>>b>>c;
w[a][b] = c;
w[b][a] = c;
}
dijkstra();//求出1到所有定点最短路 double max1 = -;//情况a停在某个结点上,That is the longest road of d[]
int index;
for(int i=;i<=n;i++){
if(max1<d[i]){
max1=d[i]*1.0;
index=i;
}
} double max2 = -;
int index1,index2;
for(int i=; i<=n; i++){//情况b停在普通的牌上(即:边上的普通多米诺骨牌)
for(int j=; j<=n; j++){//暴力枚举所有边求最大值
if(w[i][j]!=INF && i<j){//i<j优化作用
if(max2<(d[i]+d[j]+w[i][j])/2.0){
max2 = (d[i]+d[j]+w[i][j])/2.0;
index1 = i;
index2 = j;
}
}
}
} printf("System #%d\n",tt++);
if(max1 >= max2)//选出符合的情况
printf("The last domino falls after %.1f seconds, at key domino %d.\n",max1,index);
else
printf("The last domino falls after %.1f seconds, between key dominoes %d and %d.\n",max2,index1,index2);
printf("\n");
}
return ;
}
/*
^_^:Dijkstra算法(正权图上的单源最短路 Single-Source Shortest Paths)
即从单个节点出发,到所有节点的最短路径,该算法适合于有向图和无向图)
:清除所有点的标号
设d[0]=0,其它d[i]=INF;
循环n次
{
在所有未标号的节点中,选出d值最小的节点x
给出节点x标记
对于从x出发的所有边(x,y),更新d[y]=min{d[y],d[x]+w(x,y)}
}
:假设起点是结点0,它到结点i的路径长度为d[i],v[i]=0未标号,w[i][j]=INF路径不存在
memset(v,0,sizeof(v));
for(int i=0;i<n;i++)d[i]=(i==0 ? 0:INF);
for(int i=0;i<n;i++){
int x,min=INF;
for(int y=0;y<n;y++)if(!v[y] && d[y]<=min)min=d[x=y];
v[x]=1;
for(int y=0;y<n;y++)d[y]=min(d[y],d[x]+w[x][y]);//INF取适当大,防止越界!!!或加一个判断是否xy连通
}
:除了求出最短路的长度外,也能很方便地打印所有结点0到所有结点最短路本身(从终点出发
,不断顺着d[i]+w[i][j]==d[j]的边(i,j)从结点j"退回"到结点i,直到回到起点。此外,也
可以在更新d时维护"父亲指针".具体来说就是把d[y]=min(....)改成:
if(d[y]>d[x]+w[x][y]){
d[y]=d[x]+w[x][y];
fa[y]=x;
}
*/
[ACM_图论] Domino Effect (POJ1135 Dijkstra算法 SSSP 单源最短路算法 中等 模板)的更多相关文章
- 【算法】单源最短路——Dijkstra
对于固定起点的最短路算法,我们称之为单源最短路算法.单源最短路算法很多,最常见的就是dijkstra算法. dijkstra主要用的是一种贪心的思想,就是说如果i...s...t...j是最短路,那么 ...
- 用scheme语言实现SPFA算法(单源最短路)
最近自己陷入了很长时间的学习和思考之中,突然发现好久没有更新博文了,于是便想更新一篇. 这篇文章是我之前程序设计语言课作业中一段代码,用scheme语言实现单源最段路算法.当时的我,花了一整天时间,学 ...
- Dijkstra算法——单源最短路算法
一.介绍 迪杰斯特拉(Dijkstra)算法是典型最短路径算法,用于计算一个节点到其他各个节点的最短路径. 它的主要特点是以起始点为中心向外层层扩展(广度优先搜索思想),直到扩展到终点为止. 适用于有 ...
- 图论算法(二)最短路算法:Floyd算法!
最短路算法(一) 最短路算法有三种形态:Floyd算法,Shortset Path Fast Algorithm(SPFA)算法,Dijkstra算法. 我个人打算分三次把这三个算法介绍完. (毕竟写 ...
- 算法基础⑧搜索与图论--dijkstra(迪杰斯特拉)算法求单源汇最短路的最短路径
单源最短路 所有边权都是正数 朴素Dijkstra算法(稠密图) #include<cstdio> #include<cstring> #include<iostream ...
- Til the Cows Come Home(poj 2387 Dijkstra算法(单源最短路径))
Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 32824 Accepted: 11098 Description Bes ...
- 最短路模板(Dijkstra & Dijkstra算法+堆优化 & bellman_ford & 单源最短路SPFA)
关于几个的区别和联系:http://www.cnblogs.com/zswbky/p/5432353.html d.每组的第一行是三个整数T,S和D,表示有T条路,和草儿家相邻的城市的有S个(草儿家到 ...
- 单源最短路——dijkstra算法
Dijkstra算法 1.定义概览 Dijkstra(迪杰斯特拉)算法是典型的单源最短路径算法,用于计算一个节点到其他所有节点的最短路径.主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止. 问 ...
- 【算法系列学习】Dijkstra单源最短路 [kuangbin带你飞]专题四 最短路练习 A - Til the Cows Come Home
https://vjudge.net/contest/66569#problem/A http://blog.csdn.net/wangjian8006/article/details/7871889 ...
随机推荐
- UVa 458 - The Decoder
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=94&page=s ...
- 灭顶之灾之网络电视精灵——S2 2.8
从前,有一个神奇的东西叫做搞搞精灵 关于他,有一段历史. 哎呀!我去!写不下去了. -.-以上玩笑 首先需求分析 TreeView显示两种频道 TypeA和TypeB 所以创建三个类 ChannelB ...
- P1159岳麓山上打水
P1159岳麓山上打水 https://vijos.org/p/1159 dfsID,第一次听说这东西,但是感觉不太靠谱啊. 一开始的时候,想到了排个序后,然后进行dp,如果要输出字典序最小其实还是可 ...
- quartus ii13.0~16.0 调用uedit (转载http://blog.sina.com.cn/s/blog_6d5560f00102vax6.html)
转自 http://blog.sina.com.cn/s/blog_6d5560f00102vax6.html Quartus II 中的文本编辑软件不好用,比较习惯与UE(Uedit32/ultra ...
- 简单的python服务器程序
一个接受telnet输入的服务器端小程序 #!/usr/local/bin/python3.5 #coding:utf-8 import socket host = '' port = 51423 s ...
- Light OJ 1026 - Critical Links (图论-双向图tarjan求割边,桥)
题目大意:双向联通图, 现在求减少任意一边使图的联通性改变,按照起点从小到大列出所有这样的边 解题思路:双向边模版题 tarjan算法 代码如下: #include<bits/stdc++.h& ...
- 关于Android中混淆的问题
1.签名打包后库依赖报错,提示找不到依赖库的方法. 原因:混淆,依赖库的方法被混淆了. 解决方法:过滤混淆,即不要混淆这依赖库的文件. -keep class de.greenrobot.event. ...
- centos6.5 安装cmake 3.3.2
os:centos6.5 cmake版本:3.3.2 安装编译源码所需的工具和库 yum install gcc gcc-c++ ncurses-devel perl 下载cmake 使用wget工具 ...
- easyui中tree使用simpleData的形式加载数据
了解了zTree的使用, 发现它的simpleData是非常好用的, 由后台返回一个扁平数据, 直接在前台解析成树形菜单, 网上查了一下, easyui也可以简单实现, 不过....没看懂, 先记录一 ...
- Hibernate学习(一)
一.基本概念 ORM(Object Relational Mapping)---是一种为了解决面向对象与关系型数据库存在的互不匹配的现象的技术.简单说: ORM 是通过使用描述对象和数据库之间映射的元 ...