Network of schools
Time Limit: 1000MS |
|
Memory Limit: 10000K |
Total Submissions: 12240 |
|
Accepted: 4871 |
Description
A number of schools is connected to a computer network. Agreements has been developed among those Schools:each School maintains a list of schools to which it distributes Softwa Re (the "Receiving schools"). Note that if B was in the distribution list of school A, then a does not necessarily appear in the list of school B
You is to write a program this computes the minimal number of schools that must receive a copy of the new software in Ord Er for the software to reach all schools in the network according to the agreement (Subtask A). As a further task, we want to ensure is sending the copy of new software to an arbitrary school, this software would r Each of the schools in the network. To achieve this goal we are having to extend the lists of receivers by new members. Compute the minimal number of extensions that has to is made so this whatever school we send the new software to, it'll Reach all other schools (Subtask B). One extension means introducing one new member into the list of receivers of one school.
Input
The first line contains a integer n:the number of schools in the network (2 <= N <= 100). The schools is identified by the first N positive integers. Each of the next N lines describes a list of receivers. The line i+1 contains the identifiers of the receivers of school I. Each list is ends with a 0. An empty list contains a 0 alone in the line.
Output
Your program should write, lines to the standard output. The first line should contain one positive integer:the solution of subtask A. The second line should contain the solution of subtask B.
Sample Input
52 4 3 04 5 0001 0
Sample Output
12
Test instructions: The software is sent in a direction, each school can be sent to the list of other schools, please:
1. At least how many software will be sent to all schools to receive (a)
2. Add a couple of sides to the school relationship to allow the software to be sent to any school, others can receive (B)
Idea: To find the strong connected components of the graph, the number of strong connected components with a a= of 0, the number of b= into 0 and the number of perceive 0 is the larger one
Finding strong connected components: Tarjan algorithm
POJ 1236 Network of schools (Tarjan + indent)