Score : $600$ points
We have a simple connected undirected graph with $N$ vertices and $M$ edges.
The vertices are numbered as Vertex $1$, Vertex $2$, $\dots$, Vertex $N$.
The edges are numbered as Edge $1$, Edge $2$, $\dots$, Edge $M$. Edge $i$ connects Vertex $a_i$ and Vertex $b_i$ bidirectionally. There is no edge that directly connects Vertex $1$ and Vertex $N$.
Each vertex is either empty or occupied by a wall. Initially, every vertex is empty.
Aoki is going to travel from Vertex $1$ to Vertex $N$ along the edges on the graph. However, Aoki is not allowed to move to a vertex occupied by a wall.
Takahashi has decided to choose some of the vertices to build walls on, so that Aoki cannot travel to Vertex $N$ no matter which route he takes.
Building a wall on Vertex $i$ costs Takahashi $c_i$ yen (the currency of Japan). He cannot build a wall on Vertex $1$ and Vertex $N$.
How many yens is required for Takahashi to build walls so that the conditions is satisfied? Also, print the way of building walls to achieve the minimum cost.
Input is given from Standard Input in the following format:
$N$ $M$ $a_1$ $b_1$ $a_2$ $b_2$ $\vdots$ $a_M$ $b_M$ $c_1$ $c_2$ $\dots$ $c_N$
Print in the following format. Here, $C,k$, and $p_i$ are defined as follows.
$C$ $k$ $p_1$ $p_2$ $\dots$ $p_k$
If there are multiple ways to build walls to satisfy the conditions with the minimum cost, print any of them.
5 5 1 2 2 3 3 5 2 4 4 5 0 8 3 4 0
7 2 3 4
If Takahashi builds walls on Vertex $3$ and Vertex $4$, paying $3 + 4 = 7$ yen, Aoki is unable to travel from Vertex $1$ to Vertex $5$.
There is no way to satisfy the condition with less cost, so $7$ yen is the answer.
3 2 1 2 2 3 0 1 0
1 1 2
5 9 1 2 1 3 1 4 2 3 2 4 2 5 3 4 3 5 4 5 0 1000000000 1000000000 1000000000 0
3000000000 3 2 3 4