其实这题还是不难。
精彩的地方在于用位处理来记录公司。
这样再用floyd传递闭包时候只需要位运算。
很妙。
#include<iostream>
#include<string>using namespace std;
int n;
const int N=205;
int mat[N][N];
void floyd()
{
for(int k=1;k<=n;k++)
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
if(mat[i][k]&mat[k][j])
{
mat[i][j]|=(mat[i][k]&mat[k][j]);
}
}
int main()
{
int from,to;
while(scanf("%d",&n),n!=0)
{
memset(mat,0,sizeof(mat));
while(scanf("%d%d",&from,&to),from!=0||to!=0)
{
char str[N];
scanf("%s",str);
int len=strlen(str);
for(int i=1;i<=len;i++)
{
mat[from][to]|=(1<<(str[i-1]-'a'));
}
}
floyd();
while(scanf("%d%d",&from,&to),from!=0||to!=0)
{
if(!mat[from][to])
printf("-\n");
else
{
for(int i=1,k=0;i<=mat[from][to];i=i<<(1),k++)
{
if(mat[from][to]&i)
{
printf("%c",'a'+k);
}
}
printf("\n");
}
}
printf("\n");
}
return 0;
}