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

Southwestern Europe 1996

 #include <stdio.h>
#include <iostream>
#include <queue>
#include <vector>
#define MAXN 600
#define inf 0x3f3f3f3f
using namespace std; struct Node{
int end;
double dis;
}; int n,m;
double dist[MAXN];
vector<Node> V[MAXN]; void spfa(){
for(int i=; i<=n; i++,dist[i]=inf);
dist[]=;
queue<Node> Q;
Node n1;
n1.end=;
n1.dis=;
Q.push(n1);
while( !Q.empty() ){
Node now=Q.front();
Q.pop();
for(int i=; i<V[now.end].size(); i++){
Node temp=V[now.end][i];
double v=temp.dis+now.dis;
if( v < dist[temp.end]){
dist[temp.end]=v;
temp.dis=v;
Q.push(temp);
}
}
}
} int main()
{
int c=;
while( scanf("%d %d",&n ,&m)!=EOF ){
if(n== && m==)break;
for(int i=; i<=n; i++){
V[i].clear();
}
int a,b,l;
for(int i=; i<m; i++){
scanf("%d %d %d",&a ,&b ,&l);
Node n1,n2;
n1.end=b;
n1.dis=l;
V[a].push_back(n1);
n2.end=a;
n2.dis=l;
V[b].push_back(n2);
}
spfa();
double ans=-;
int k=;
for(int i=; i<=n; i++){
if(dist[i]>ans){
ans=dist[i];
k=i;
}
}
int flag=,t1,t2;
for(int i=; i<=n; i++){
for(int j=; j<V[i].size(); j++){
int to=V[i][j].end;
double dis=V[i][j].dis;
if( (dist[i]+dis+dist[to])/>ans ){
flag=;
ans=(dist[i]+dis+dist[to])/;
t1=i;
t2=to;
}
}
}
printf("System #%d\n",++c);
if(flag){
printf("The last domino falls after %.1lf seconds, between key dominoes %d and %d.\n"
,ans ,min(t1,t2) ,max(t1,t2));
}else{
printf("The last domino falls after %.1lf seconds, at key domino %d.\n",ans,k);
}
puts("");
}
return ;
}

TOJ 1883 Domino Effect的更多相关文章

  1. CF 405B Domino Effect(想法题)

    题目链接: 传送门 Domino Effect time limit per test:1 second     memory limit per test:256 megabytes Descrip ...

  2. [ACM_图论] Domino Effect (POJ1135 Dijkstra算法 SSSP 单源最短路算法 中等 模板)

    Description Did you know that you can use domino bones for other things besides playing Dominoes? Ta ...

  3. POJ 1135 Domino Effect(Dijkstra)

    点我看题目 题意 : 一个新的多米诺骨牌游戏,就是这个多米诺骨中有许多关键牌,他们之间由一行普通的骨牌相连接,当一张关键牌倒下的时候,连接这个关键牌的每一行都会倒下,当倒下的行到达没有倒下的关键牌时, ...

  4. POJ 1135 Domino Effect (spfa + 枚举)- from lanshui_Yang

    Description Did you know that you can use domino bones for other things besides playing Dominoes? Ta ...

  5. UVA211-The Domino Effect(dfs)

    Problem UVA211-The Domino Effect Accept:536  Submit:2504 Time Limit: 3000 mSec  Problem Description ...

  6. POJ 1135 Domino Effect (Dijkstra 最短路)

    Domino Effect Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9335   Accepted: 2325 Des ...

  7. POJ 1135.Domino Effect Dijkastra算法

    Domino Effect Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 10325   Accepted: 2560 De ...

  8. zoj 1298 Domino Effect (最短路径)

    Domino Effect Time Limit: 2 Seconds      Memory Limit: 65536 KB Did you know that you can use domino ...

  9. [POJ] 1135 Domino Effect

    Domino Effect Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12147 Accepted: 3046 Descri ...

随机推荐

  1. CreateExcel 导出Excel

    public class CreateExcel { /// <summary> /// 用Excel组件导出Excel文件 /// </summary> /// <pa ...

  2. Header Only Library

    什么是Header Only Library Header Only Library把一个库的内容完全写在头文件中,不带任何cpp文件. 这是一个巧合,决不是C++的原始设计. 第一次这么做估计是ST ...

  3. element时间选择器插件转化为YYYY-MM-DD的形式

    let datete = new Date(this.form.value0);this.form.value0 =datete.getFullYear() +"-" +(date ...

  4. centos7下git的安装和配置

    git的安装: yum 源仓库里的 Git 版本更新不及时,最新版本的 Git 是 1.8.3.1,但是官方最新版本已经到了 2.9.2.想要安装最新版本的的 Git,只能下载源码进行安装. 1. 查 ...

  5. .Net Core .Net Core V1.0 创建MVC项目

    .Net Core V1.0 创建MVC项目 创建MVC项目有两种方式: 一.创建Web项目:(有太多没用的东西要去删太麻烦) 2.项目目录结构: 此种方法要注意的是,会创建好多个json文件,下面就 ...

  6. L - Ch’s gift HDU - 6162

    Ch’s gift Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total S ...

  7. Bitnami WordPress无法修改MySQL root的默认密码的解决方法?

    今天准备修改Bitnami WordPress的MySQL root的默认密码,但是总是出现下面错误: ERROR 1045 (28000): Access denied for user 'root ...

  8. 同一个程序里有多个版本的App

    在Xcode中添加多个targets进行版本控制,就是同一个app开发多个版本 以Xcode 9.3 为例 1. 创建 点击左侧工程项目文件,选择TARGETS 下的项目右击选择 Duplicate. ...

  9. 安卓手机传递文件到Windows系统电脑

    1.需求说明 安卓手机传递文件到Windows系统电脑上不太方便,传递文件的原理花样太多.这里介绍纯净原生的蓝牙文件传递方式. 2.操作步骤 2.1 打开侧边栏面板 2.2 打开蓝牙,右键转至设置 2 ...

  10. JavaScript随机数组(数组、随机、取整、取值的过程)

      <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&q ...