UVA 247 플로이드 알고리즘 + 반복
#include<iostream>
#include<string>
#include<algorithm>
#include<map>
#include<cstring>
#include<vector>
#include<cstdio>
using namespace std;
#define N 500
int d[N][N];
map<string,int>q;
map<int,string>p;
string s1,s2;
int n,m,cas=0;
int vis[N];
void dfs(int u)
{
vis[u]=1;
for(int k=0;k<n;k++)
{
if(!vis[k])
{
if(d[u][k]&&d[k][u])
{
cout<<", "<<p[k];
dfs(k);
}
}
}
}
int main()
{
//freopen("i.txt","r",stdin);
//freopen("o.txt","w",stdout);
//ios::sync_with_stdio(false);
while(~scanf("%d%d",&n,&m))
{
memset(vis,0,sizeof(vis));
p.clear();
q.clear();
if(m==0&&n==0)
break;
if(cas)
cout<<endl;
printf("Calling circles for data set %d:
",++cas);
int tt=-1;
memset(d,0,sizeof(d));
while(m--)
{
cin>>s1>>s2;
if(!q.count(s1))
{
q[s1]=++tt;
p[tt]=s1;
}
if(!q.count(s2))
{
q[s2]=++tt;
p[tt]=s2;
}
d[q[s1]][q[s2]]=1;
}
for(int k=0;k<n;k++)//
{
for(int i=0;i<n;i++)
{
if(d[i][k])
{
for(int j=0;j<n;j++)
{
if(d[k][j])
{
d[i][j]=1;
}
}
}
}
}
//for(int i=0;i<n;i++)
//{
// for(int j=0;j<n;j++)
// {
// printf("%d",d[i][j]);
// }
// puts("");
//}
for(int i=0;i<n;i++)
{
if(!vis[i])
{
cout<<p[i];
dfs(i);
cout<<endl;
}
}
}
return 0;
}
Calling Circles Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu
Submit
Status
Practice
Description
Download as PDF
If you've seen television commercials for long-distance phone companies lately, you've noticed that many companies have been spending a lot of money trying to convince people that they provide the best service at the lowest cost. One company has ``calling circles."You provide a list of people that you call most frequently. If you call someone in your calling circle (who is also a customer of the same company), you get bigger discounts than if you call outside your circle. Another company points out that you only get the big discounts for people in your calling circle, and if you change who you call most frequently, it's up to you to add them to your calling circle.
LibertyBell Phone Co. is a new company that thinks they have the calling plan that can put other companies out of business. LibertyBell has calling circles, but they figure out your calling circle for you. This is how it works. LibertyBell keeps track of all phone calls. In addition to yourself, your calling circle consists of all people whom you call and who call you, either directly or indirectly.
For example, if Ben calls Alexander, Alexander calls Dolly, and Dolly calls Ben, they are all within the same circle. If Dolly also calls Benedict and Benedict calls Dolly, then Benedict is in the same calling circle as Dolly, Ben, and Alexander. Finally, if Alexander calls Aaron but Aaron doesn't call Alexander, Ben, Dolly, or Benedict, then Aaron is not in the circle.
You've been hired by LibertyBell to write the program to determine calling circles given a log of phone calls between people.
Input
The input file will contain one or more data sets. Each data set begins with a line containing two integers, n and m. The first integer, n, represents the number of different people who are in the data set. The maximum value for n is 25. The remainder of the data set consists of m lines, each representing a phone call. Each call is represented by two names, separated by a single space. Names are first names only (unique within a data set), are case sensitive, and consist of only alphabetic characters; no name is longer than 25 letters.
For example, if Ben called Dolly, it would be represented in the data file as
Ben Dolly
Input is terminated by values of zero (0) for n and m.
Output
For each input set, print a header line with the data set number, followed by a line for each calling circle in that data set. Each calling circle line contains the names of all the people in any order within the circle, separated by comma-space (a comma followed by a space). Output sets are separated by blank lines.
Sample Input
5 6
Ben Alexander
Alexander Dolly
Dolly Ben
Dolly Benedict
Benedict Dolly
Alexander Aaron
14 34
John Aaron
Aaron Benedict
Betsy John
Betsy Ringo
Ringo Dolly
Benedict Paul
John Betsy
John Aaron
Benedict George
Dolly Ringo
Paul Martha
George Ben
Alexander George
Betsy Ringo
Alexander Stephen
Martha Stephen
Benedict Alexander
Stephen Paul
Betsy Ringo
Quincy Martha
Ben Patrick
Betsy Ringo
Patrick Stephen
Paul Alexander
Patrick Ben
Stephen Quincy
Ringo Betsy
Betsy Benedict
Betsy Benedict
Betsy Benedict
Betsy Benedict
Betsy Benedict
Betsy Benedict
Quincy Martha
0 0
Sample Output
Calling circles for data set 1:
Ben, Alexander, Dolly, Benedict
Aaron
Calling circles for data set 2:
John, Betsy, Ringo, Dolly
Aaron
Benedict
Paul, George, Martha, Ben, Alexander, Stephen, Quincy, Patrick
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.