NOI '07 P1 - Social Network

View as PDF

Submit solution

Points: 15 (partial)
Time limit: 0.6s
Memory limit: 256M

Problem types
National Olympiad in Informatics, China, 2007

In the study of social networks, we commonly use graph theory to explain certain social phenomena.

Let's look at a problem regarding this. There are n people in a social group. Between people, there are different levels of relationships. We represent this relationship network using an undirected graph with n nodes. If two different people are familiar with each other, then there will exist an undirected edge between their corresponding nodes on the graph. Additionally, the edge will have a positive weight c – the smaller the value of c, the closer the relationship between the two people.

We can use the shortest path between the corresponding nodes of two people s and t to measure the closeness of their relationship. Note that other nodes on the shortest path provide some level of benefit to the relationship between s and t, and that these nodes have a certain level of importance with respect to s and t's relationship. Through analysis of the shortest paths passing through node v, we can measure v's importance level to the entire social network.

Observing that there may be multiple shortest paths between nodes A and B, we revise our definition of the importance level as follows:

Let C_{s,t} represent the number of shortest paths between nodes s and t, and C_{s,t}(v) represent the number of shortest paths between nodes s and t which passes through v. The importance level of node v to the social network is defined as:

\displaystyle I(v) = \sum_{s \ne v, t \ne v} \frac{C_{s,t}(v)}{C_{s,t}}

To ensure that I(v) and C_{s,t}(v) are always defined, we will only deal with social networks that can be represented by connected, undirected graphs. Furthermore, there will always exist a shortest path of finite length between any pair of nodes.

Given such a weighted, undirected graph representing the social network, please calculate the importance level of each node.

Input Specification

The first line of input contains two integers n and m, representing the number of nodes and the number of undirected edges in the social network. The nodes in the graph are numbered consecutively from 1 to n.

For the next m lines, each line contains three integers a, b, and c describing an undirected edge connecting nodes a and b with weight c. Note that there will be at most one undirected edge between any pair of nodes, and no loops will occur within the graph (where the two ends of an edge rest on the same node).

Output Specification

Output n lines, each line containing a single real number, accurate to 3 digits after the decimal point. Line i represents the importance of node i to the social network. Your outputted numbers will be considered correct if the absolute differences between them and the correct values do not exceed 0.001.

Sample Input

4 4
1 2 1
2 3 1
3 4 1
4 1 1

Sample Output

1.000
1.000
1.000
1.000

Explanation

The social network is depicted in the following figure.

Regarding node 1, only the shortest path from 2 to 4 and the shortest path from 4 to 2 pass through it. There are 2 different shortest paths between nodes 2 and 4. According to the definition, the importance level of node 1 is \frac 1 2 + \frac 1 2 = 1. Due to the symmetry of the graph, the other three edges also have importance levels of 1.

Constraints

For 50\% of the test cases: n \le 10, m \le 45.
For 100\% of the test cases: n \le 100, m \le 4\,500, and the weight c of any edge will be a positive integer satisfying 1 \le c \le 1\,000.
It is guaranteed that the data will consist of connected, undirected graphs, and that the number of shortest paths between any two nodes will not exceed 10^{10}.

Problem translated to English by Alex.


Comments

There are no comments at the moment.