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
1 2 27
3 3
1 2 5
1 3 5
2 3 5
0 0

Sample Output

System #1
The last domino falls after 27.0 seconds, at key domino 2. System #2
The last domino falls after 7.5 seconds, between key dominoes 2 and 3.

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 单源最短路算法 中等 模板)的更多相关文章

  1. 【算法】单源最短路——Dijkstra

    对于固定起点的最短路算法,我们称之为单源最短路算法.单源最短路算法很多,最常见的就是dijkstra算法. dijkstra主要用的是一种贪心的思想,就是说如果i...s...t...j是最短路,那么 ...

  2. 用scheme语言实现SPFA算法(单源最短路)

    最近自己陷入了很长时间的学习和思考之中,突然发现好久没有更新博文了,于是便想更新一篇. 这篇文章是我之前程序设计语言课作业中一段代码,用scheme语言实现单源最段路算法.当时的我,花了一整天时间,学 ...

  3. Dijkstra算法——单源最短路算法

    一.介绍 迪杰斯特拉(Dijkstra)算法是典型最短路径算法,用于计算一个节点到其他各个节点的最短路径. 它的主要特点是以起始点为中心向外层层扩展(广度优先搜索思想),直到扩展到终点为止. 适用于有 ...

  4. 图论算法(二)最短路算法:Floyd算法!

    最短路算法(一) 最短路算法有三种形态:Floyd算法,Shortset Path Fast Algorithm(SPFA)算法,Dijkstra算法. 我个人打算分三次把这三个算法介绍完. (毕竟写 ...

  5. 算法基础⑧搜索与图论--dijkstra(迪杰斯特拉)算法求单源汇最短路的最短路径

    单源最短路 所有边权都是正数 朴素Dijkstra算法(稠密图) #include<cstdio> #include<cstring> #include<iostream ...

  6. Til the Cows Come Home(poj 2387 Dijkstra算法(单源最短路径))

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 32824   Accepted: 11098 Description Bes ...

  7. 最短路模板(Dijkstra & Dijkstra算法+堆优化 & bellman_ford & 单源最短路SPFA)

    关于几个的区别和联系:http://www.cnblogs.com/zswbky/p/5432353.html d.每组的第一行是三个整数T,S和D,表示有T条路,和草儿家相邻的城市的有S个(草儿家到 ...

  8. 单源最短路——dijkstra算法

    Dijkstra算法 1.定义概览 Dijkstra(迪杰斯特拉)算法是典型的单源最短路径算法,用于计算一个节点到其他所有节点的最短路径.主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止. 问 ...

  9. 【算法系列学习】Dijkstra单源最短路 [kuangbin带你飞]专题四 最短路练习 A - Til the Cows Come Home

    https://vjudge.net/contest/66569#problem/A http://blog.csdn.net/wangjian8006/article/details/7871889 ...

随机推荐

  1. python学习笔记2-functools.wraps 装饰器

    wraps其实没有实际的大用处, 就是用来解决装饰器导致的原函数名指向的函数 的属性发生变化的问题: 装饰器装饰过函数func, 此时func不是指向真正的func,而是指向装饰器中的装饰过的函数 i ...

  2. js 定时函数

    Document自带的方法: 循环执行:var timeid = window.setInterval(“方法名或方法”,“延时”);window.clearInterval(timeid); 定时执 ...

  3. python-函数中定义可变参数

    可变参数 在Python函数中,还可以定义可变参数.顾名思义,可变参数就是传入的参数个数是可变的,可以是1个.2个到任意个,还可以是0个. 我们以数学题为例子,给定一组数字a,b,c……,请计算a2 ...

  4. win7下安装mysql

    (1)官网下载mysql: http://dev.mysql.com/downloads/mysql/ (2)解压后,进入到该目录下,将my-default.ini文件复制一份改名为my.ini 打开 ...

  5. PHP开发模式之代理技术

    在实际开发中,我们经常要调用第三方的类库如SOAP服务等.使用这些第三方 组件并不难,最麻烦的莫过于调用了,一般的调试手段最方便的莫过于记日志了. 示例: 假如有以下第三方类库. // filenam ...

  6. sqlite query用法

    本文转自http://blog.csdn.net/double2hao/article/details/50281273,在此感谢作者 query(table, columns, selection, ...

  7. AngularJs 返回上一页

    html <script src="lib/angular/angular-1.4.9/angular.js"></script> <script s ...

  8. Java 基本数据类型长度

    System.out.println(Integer.MAX_VALUE-(-Integer.MAX_VALUE)); //内存溢出System.out.println(Integer.MAX_VAL ...

  9. angualrjs

    $rootScope是angularJS中最接近全局作用域的对象.在$rootScope上附加太多业务逻辑并不是好主意,这与污染JavaScript的全局作用域是一样的. $scope对象就是一个普通 ...

  10. Ubuntu设置squid代理

    1.安装squid sudo apt-get install squid 2,修改配置,增加需要使用代理的ip vi命令修改: vi /etc/squid/squid.conf 图形界面编辑 sudo ...