- Time limit: 1.00 s
- Memory limit: 512 MB
There are cities and bus companies. Each bus company operates in specific cities and sells tickets for a specific price. Buying a ticket from a bus company allows you to travel between any two cities that the company operates in.
Determine the cost of the cheapest route from Syrjälä to every city.
Input
The first line has two integers and : the number of cities and bus companies. The cities are numbered , and city is Syrjälä.
The next line has integers : the ticket costs for each bus company.
After that, there are pairs of lines describing the cities for each bus company.
The first line of each pair has a single integer : the number of cities the bus company operates in.
The second line of each pair has distinct integers : the cities the bus company operates in.
You can assume that it is possible to travel from Syrjälä to all other cities.
Output
Print integers: the cheapest route costs from Syrjälä to cities .
Constraints
- the sum of all is at most
Example
Input:
5 3 4 3 2 3 1 4 3 2 5 1 4 2 3 4 5
Output:
0 5 4 4 3