poj 2570 Fiber Network Floyd

Description

Several startup companies have decided to build a better Internet, called the "FiberNet". They have already installed many nodes that act as routers all around the world. Unfortunately, they started to quarrel about the connecting lines, and ended up with every company laying its own set of cables between some of the nodes. 

Now, service providers, who want to send data from node A to node B are curious, which company is able to provide the necessary connections. Help the providers by answering their queries.


Input

The input contains several test cases. Each test case starts with the number of nodes of the network n. Input is terminated by n = 0. Otherwise, 1 <= n <= 200. Nodes have the numbers 1, ..., n. Then follows a list of connections. Every connection starts with two numbers A, B. The list of connections is terminated by A = B = 0. Otherwise, 1 <= A, B <= n, and they denote the start and the endpoint of the unidirectional connection, respectively. For every connection, the two nodes are followed by the companies that have a connection from node A to node B. A company is identified by a lower-case letter. The set of companies having a connection is just a word composed of lower-case letters. 

After the list of connections, each test case is completed by a list of queries. Each query consists of two numbers A, B. The list (and with it the test case) is terminated by A = B = 0. Otherwise, 1 <= A, B <= n, and they denote the start and the endpoint of the query. You may assume that no connection and no query contains identical start and end nodes.


Output

For each query in every test case generate a line containing the identifiers of all the companies, that can route data packages on their own connections from the start node to the end node of the query. If there are no companies, output "-" instead. Output a blank line after each test case.


Sample Input

3
1 2 abc
2 3 ad
1 3 b
3 1 de
0 0
1 3
2 1
3 2
0 0
2
1 2 z
0 0
1 2
2 1
0 0
0


Sample Output

ab
d
-

z
-

 

题意及分析:

题意都能读懂,也许知道是Floyd你就可以做出来了。看了代码你就能懂,就不多说了。

AC代码:

#include
   
   
    
    
#include
    
    
     
     
#include
     
     
      
      
#include
      
      
       
       
#include
       
        #include 
        
          #include 
         
           #include 
          
            #define eps 1e-9 #define ll long long #define INF 0x3f3f3f3f using namespace std; int n; char ans[300]; int edge[30][300][300]; //三维数组存每个公司的线路 int main() { int i,j,k,l; while(scanf("%d",&n),n) { int a,b; memset(edge,0,sizeof(edge)); while(scanf("%d%d",&a,&b)&&(a||b)) { char str[500]; scanf("%s",str); int len=strlen(str); for(i=0;i 
            
           
          
        
      
      
     
     
    
    
   
   

 还有一种更为高效的方法,那就是用二进制的概念。一个数在电脑里是由二进制位表示的。int有16个二进制位。

现在用每一个二进制位代表一个公司,1代表有这样的一条路,0则反。如果用四个二进制位表示4个公司,比如edge[a][b]=3,也就是二进制位的0011,这表示第一个和第二个公司,在节点a,b之间有相应的线路。

代码如下:

#include
    
    
     
     
#include
     
     
      
      
#include
      
      
       
       
#include
       
       
        
        
#include
        
         #include 
         
           #include 
          
            #include 
           
             #define eps 1e-9 #define ll long long #define INF 0x3f3f3f3f using namespace std; int edge[300][300]; int main() { int i,j,k,n; while(scanf("%d",&n),n) { memset(edge,0,sizeof(edge)); int a,b; while(scanf("%d%d",&a,&b)&&(a||b)) { char str[500]; scanf("%s",str); int len=strlen(str); for(i=0;i 
             
            
           
         
       
       
      
      
     
     
    
    

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值