CSES - Bus Companies
  • Time limit: 1.00 s
  • Memory limit: 512 MB

There are nn cities and mm 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 nn and mm: the number of cities and bus companies. The cities are numbered 1,2,,n1,2,\dots,n, and city 11 is Syrjälä.

The next line has mm integers c1,c2,,cmc_1, c_2,\dots, c_m: the ticket costs for each bus company.

After that, there are mm pairs of lines describing the cities for each bus company.

The first line of each pair has a single integer kk: the number of cities the bus company operates in.

The second line of each pair has kk distinct integers a1,a2,,aka_1, a_2,\dots, a_k: 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 nn integers: the cheapest route costs from Syrjälä to cities 1,2,,n1,2,\dots, n.

Constraints

  • 1n,m1051 \le n, m \le 10^5
  • 1c1091 \le c \le 10^9
  • 2kn2 \le k \le n
  • 1an1 \le a \le n
  • the sum of all kk is at most 21052 \cdot 10^5

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