UVA 558 Wormholes(有向图的传递闭包)

来源:互联网 发布:php个人自动发卡源码 编辑:程序博客网 时间:2024/05/20 12:47


 Wormholes
Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu


Description

In the year 2163, wormholes were discovered. A wormhole is a subspace tunnel through space and time connecting two star systems. Wormholes have a few peculiar properties:

  • Wormholes are one-way only.

  • The time it takes to travel through a wormhole is negligible.

  • A wormhole has two end points, each situated in a star system.

  • A star system may have more than one wormhole end point within its boundaries.

  • For some unknown reason, starting from our solar system, it is always possible to end up in any star system by following a sequence of wormholes (maybe Earth is the centre of the universe).

  • Between any pair of star systems, there is at most one wormhole in either direction.

  • There are no wormholes with both end points in the same star system.

All wormholes have a constant time difference between their end points. For example, a specific wormhole may cause the person travelling through it to end up 15 years in the future. Another wormhole may cause the person to end up 42 years in the past.


A brilliant physicist, living on earth, wants to use wormholes to study the Big Bang. Since warp drive has not been invented yet, it is not possible for her to travel from one star system to another one directly. This can be done using wormholes, of course.


The scientist wants to reach a cycle of wormholes somewhere in the universe that causes her to end up in the past. By travelling along this cycle a lot of times, the scientist is able to go back as far in time as necessary to reach the beginning of the universe and see the Big Bang with her own eyes. Write a program to find out whether such a cycle exists.

Input 

The input file starts with a line containing the number of cases c to be analysed. Each case starts with a line with two numbers n and m . These indicate the number of star systems ( $1 \le n \le 1000$) and the number of wormholes ( $0 \le m \le 2000$) . The star systems are numbered from 0 (our solar system) through n-1 . For each wormhole a line containing three integer numbers xy and t is given. These numbers indicate that this wormhole allows someone to travel from the star system numbered x to the star system numbered y, thereby ending up t ( $-1000 \le t \le 1000$) years in the future.

Output 

The output consists of c lines, one line for each case, containing the word possible if it is indeed possible to go back in time indefinitely, or not possible if this is not possible with the given set of star systems and wormholes.

Sample Input 

23 30 1 10001 2 152 1 -424 40 1 101 2 202 3 303 0 -60


Sample Output 

possiblenot possible


最小生成树? 最短路径? 有负权值,并且题目中要的是能够无限的回到过去,那么肯定需要有个环,并且该环的总权值为负的,这样才能无限的回到过去,所以 floyd 算法是最好的选择,有向图的传递闭包。用floyd求出任意两点之间的最小权重,这里两点可以的同一个点,也必须要有两个点是同一个点(为了形成环),然后判断自己到自己的权重有没有为负的,如果有,那就是 possible ,反之 则为 not possible


附上代码:

#include<stdio.h>#include<string.h>#include<iostream>#include<algorithm>#include<queue>using namespace std;const int INF = 0x3f3f3f3f;int path[1100][1100];int main(){int t;cin >> t;while(t--){memset(path,INF,sizeof(path));     //  将所有的路径全部初始化为最大值INFint n,m;cin >> n >> m;for(int i = 0;i < m;i++){int a,b,c;cin >> a >> b >> c;path[a][b] = c;}for(int i = 0;i < n;i++){for(int j = 0;j < n;j++){if(path[j][i] == INF)           //   这个if 语句和下面的if语句必须要,不然会超时,在这点只有 m 个 path[j][i] 成立,执行第三层循环,<span style="font-family: 'times new roman';">能够很大程度 减少循环的次数</span>continue;for(int k = 0;k < n;k++){if(path[i][k] == INF)   //  这个同上continue;path[j][k] = min(path[j][k],path[j][i] + path[i][k]);}}}int ans = 0;for(int i = 0;i < n;i++)        //   判断 n 个节点中有没有自己到达自己的权值是负的{if(path[i][i] < 0)       //  如果有权值为负,则有能够 possible{ans = 1;break;}}if(ans)cout << "possible" << endl;elsecout << "not possible" << endl;}return 0;}



0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 卖家没货买家不退款怎么办 写作猫网络异常怎么办 淘宝差评太多怎么办 淘宝退货太多被拉黑怎么办 店铺售假扣2分怎么办 淘宝店被扣24分怎么办 实体店铺查封后怎么办 淘宝店铺封订单怎么办 淘宝店铺被扣分怎么办 淘宝账户被保护怎么办 k宝登录不了怎么办 手机淘宝看不到图片怎么办 淘宝拿到货退款怎么办 商家收货未退款怎么办 卖家发了货退款怎么办 淘宝退款货到了怎么办 退货退款不退货怎么办 换手机了淘宝怎么办 换了手机号淘宝怎么办 支付宝不能收款怎么办 换号码了淘宝怎么办 支付宝付款码打不开怎么办 苹果付款信息打不开怎么办 地税密码忘记了怎么办 网上开店没订单怎么办 qq群人员上限怎么办 糖果y9桌面锁定怎么办 手机桌面乱了怎么办 网页内容不能复制怎么办 网页不能复制粘贴怎么办 闲鱼收到假货怎么办 微博账户锁定怎么办 闲鱼东西被下架怎么办 无锡梅村社保卡怎么办 无锡梅村医保卡怎么办 常州不要的旧家具怎么办 闲退款不退货怎么办 小白摄像机离线怎么办 oppo手机死机了怎么办 手机关机卡住了怎么办 手机死机无法关机怎么办