TOJ 1883 Domino Effect
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
#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的更多相关文章
- CF 405B Domino Effect(想法题)
题目链接: 传送门 Domino Effect time limit per test:1 second memory limit per test:256 megabytes Descrip ...
- [ACM_图论] Domino Effect (POJ1135 Dijkstra算法 SSSP 单源最短路算法 中等 模板)
Description Did you know that you can use domino bones for other things besides playing Dominoes? Ta ...
- POJ 1135 Domino Effect(Dijkstra)
点我看题目 题意 : 一个新的多米诺骨牌游戏,就是这个多米诺骨中有许多关键牌,他们之间由一行普通的骨牌相连接,当一张关键牌倒下的时候,连接这个关键牌的每一行都会倒下,当倒下的行到达没有倒下的关键牌时, ...
- 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 ...
- UVA211-The Domino Effect(dfs)
Problem UVA211-The Domino Effect Accept:536 Submit:2504 Time Limit: 3000 mSec Problem Description ...
- POJ 1135 Domino Effect (Dijkstra 最短路)
Domino Effect Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9335 Accepted: 2325 Des ...
- POJ 1135.Domino Effect Dijkastra算法
Domino Effect Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10325 Accepted: 2560 De ...
- zoj 1298 Domino Effect (最短路径)
Domino Effect Time Limit: 2 Seconds Memory Limit: 65536 KB Did you know that you can use domino ...
- [POJ] 1135 Domino Effect
Domino Effect Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12147 Accepted: 3046 Descri ...
随机推荐
- exe文件停止运行的情况
1.程序问题. 2.服务器问题. 3.内存占用问题. 一般情况下,关掉程序,重新打开就可以. 上述情况不行,则关掉电脑,重启. 再不行,Ctr + Alt + Del关掉程序的进程. 不行, Win ...
- 新的云主机 python 创建虚拟环境
1.为什么要搭建虚拟环境? 问题:如果在一台电脑上, 想开发多个不同的项目, 需要用到同一个包的不同版本, 如果使用上面的命令, 在同一个目录下安装或者更新, 新版本会覆盖以前的版本, 其它的项目就无 ...
- 课后练习Javascript
<script type="text/javascript"> alert (isNaN(prompt("输入个数字进来","只能输入数字 ...
- asp.net站点阻止某个文件夹或者文件被浏览器访问
一个站点根目录下面有一个Config文件夹,这个文件夹里面都是一些json格式的txt文本,文本是一种静态资源,如果知道这个文本的地址,就可以在浏览器中输入地址打开这个文本,别人就可以看到站点的配置, ...
- linking against a dylib which is not safe for use in application extensions
完成到这里可能会出现警告 linking against a dylib which is not safe for use in application extensions 解决办法:
- (转)使用vs调试的时候,如何知道程序阻塞在哪里?
遇到一个问题,加了两个断点当运行到断点A后,我释放掉了,理想状态应该是在断点B停住,但并没有,程序感觉就像是阻塞了一样请问,这种状况如何知道程序当前是在哪里阻塞着? 回复: 可以让调试器停住,然后在调 ...
- react.js学习之路五
最近没时间写博客,但是我一直在学习react,我发现react是一个巨大的坑,而且永远填不完的坑 关于字符串的拼接: 在react中,字符串的拼接不允许出现双引号“” ,只能使用单引号' ',例如这样 ...
- Elements in iteration expect to have 'v-bind:key' directives错误的解决办法
一.错误如下 [eslint-plugin-vue][vue/require-v-for-key]Elements in iteration expect to have 'v-bind:key' d ...
- 启动Tomcat报错
如果发现引入jar包有问题时,看jar包是否损坏,变成了0kb.如果是这样,在网上试尽解决办法也是有问题的. 一般Tomcat启动报错,要引入这两个jar包.
- 加载 xib 文件 UIView
记在 UIView 的 xib 文件方式有一下几种: 一 .直接加载 xib 文件, 没有.h.m 文件 1. NSBundle 方式 NSArray *objs = [[NSBundle mainB ...