XYZZY
Time Limit: 1000MS | Memory Limit: 30000K | |
Total Submissions: 3105 | Accepted: 887 |
Description
The prototypical computer adventure game, first designed by Will Crowther on the PDP-10 in the mid-1970s as an attempt at computer-refereed fantasy gaming, and expanded into a puzzle-oriented game by Don Woods at Stanford in 1976. (Woods had been one of the authors of INTERCAL.) Now better known as Adventure or Colossal Cave Adventure, but the TOPS-10 operating system permitted only six-letter filenames in uppercase. See also vadding, Zork, and Infocom.
It has recently been discovered how to run open-source software on the Y-Crate gaming device. A number of enterprising designers have developed Advent-style games for deployment on the Y-Crate. Your job is to test a number of these designs to see which are winnable.
Each game consists of a set of up to 100 rooms. One of the rooms is the start and one of the rooms is the finish. Each room has an energy value between -100 and +100. One-way doorways interconnect pairs of rooms.
The player begins in the start room with 100 energy points. She may pass through any doorway that connects the room she is in to another room, thus entering the other room. The energy value of this room is added to the player's energy. This process continues until she wins by entering the finish room or dies by running out of energy (or quits in frustration). During her adventure the player may enter the same room several times, receiving its energy each time.
It has recently been discovered how to run open-source software on the Y-Crate gaming device. A number of enterprising designers have developed Advent-style games for deployment on the Y-Crate. Your job is to test a number of these designs to see which are winnable.
Each game consists of a set of up to 100 rooms. One of the rooms is the start and one of the rooms is the finish. Each room has an energy value between -100 and +100. One-way doorways interconnect pairs of rooms.
The player begins in the start room with 100 energy points. She may pass through any doorway that connects the room she is in to another room, thus entering the other room. The energy value of this room is added to the player's energy. This process continues until she wins by entering the finish room or dies by running out of energy (or quits in frustration). During her adventure the player may enter the same room several times, receiving its energy each time.
Input
The input consists of several test cases. Each test case begins with n, the number of rooms. The rooms are numbered from 1 (the start room) to n (the finish room). Input for the n rooms follows. The input for each room consists of one or more lines containing:
The start and finish rooms will always have enery level 0. A line containing -1 follows the last test case.
- the energy value for room i
- the number of doorways leaving room i
- a list of the rooms that are reachable by the doorways leaving room i
The start and finish rooms will always have enery level 0. A line containing -1 follows the last test case.
Output
In one line for each case, output "winnable" if it is possible for the player to win, otherwise output "hopeless".
Sample Input
5 0 1 2 -60 1 3 -60 1 4 20 1 5 0 0 5 0 1 2 20 1 3 -60 1 4 -60 1 5 0 0 5 0 1 2 21 1 3 -60 1 4 -60 1 5 0 0 5 0 1 2 20 2 1 3 -60 1 4 -60 1 5 0 0 -1
Sample Output
hopeless hopeless winnable winnable
Source
参考: http://blog.csdn.net/zxy_snow/article/details/6163761
1 //208K 157MS C++ 1444B 2013-11-23 17:33:33 2 /* 3 4 题意: 5 给出一个单向图,每个点有一个权值,每到一个点就要加上该点的权值,判断是否存在从 6 点1到点n的路径. 7 8 最短路径: 9 网上解法很多.这里是其中一种,spfa+floyd 10 题目解法思路是差不多的,就是先判断是否存在一条路径符合,如果不存在在判断途中是否有正环, 11 如果有正环就判断该环是否与点n连通,连通表示存在。 12 其中两部分都有很多算法可以解.有兴趣的同学可以自己试试.. 13 14 这里spfa判断是否存在最短路,floyd判断是否有是否连通 15 */ 16 #include<iostream> 17 #include<stdio.h> 18 #include<queue> 19 using namespace std; 20 int n; 21 int g[105][105]; 22 int w[105]; 23 int spfa() 24 { 25 queue<int>Q; 26 int max,now; 27 int vis[105]={0}; 28 int in[105]={0}; 29 int d[105]={0}; 30 d[1]=100; 31 vis[1]=1; 32 Q.push(1); 33 in[1]++; 34 while(!Q.empty()){ //spfa 35 int u=Q.front(); 36 Q.pop(); 37 vis[u]=0; 38 if(in[u]>n) break; 39 for(int i=1;i<=n;i++){ 40 if(g[u][i] && d[i]<d[u]+w[i]){ 41 d[i]=d[u]+w[i]; 42 if(!vis[i]){ 43 in[i]++; 44 Q.push(i); 45 vis[i]=1; 46 } 47 } 48 } 49 } 50 if(d[n]>0) return 1; //存在最短路 51 else{ 52 for(int k=1;k<=n;k++) //floyd 53 for(int i=1;i<=n;i++) 54 for(int j=1;j<=n;j++) 55 if(g[i][k] && g[k][j]) 56 g[i][j]=1; 57 for(int i=1;i<=n;i++) 58 if(in[i]>n && g[1][i] && g[i][n]) //存在正环和连通 59 return 1; 60 } 61 return 0; 62 } 63 int main(void) 64 { 65 int m,to; 66 while(scanf("%d",&n),n!=-1) 67 { 68 memset(g,0,sizeof(g)); 69 for(int i=1;i<=n;i++){ 70 scanf("%d%d",&w[i],&m); 71 while(m--){ 72 scanf("%d",&to); 73 g[i][to]=1; 74 } 75 } 76 if(spfa()) puts("winnable"); 77 else puts("hopeless"); 78 } 79 return 0; 80 }