6990.Visiting Cities

Time Limit: 1s Memory Limit: 512MB

You want to travel from Syrjälä to Lehmälä by plane using a minimum-price route. Which cities will you certainly visit?

Input Format(From the terminal/stdin)

The first input line contains two integers $n$ and $m$ : the number of cities and the number of flights. The cities are numbered $1,2,\ldots,n$ . City 1 is Syrjälä, and city $n$ is Lehmälä.

After this, there are $m$ lines describing the flights. Each line has three integers $a$ , $b$ , and $c$ : there is a flight from city $a$ to city $b$ with price $c$ . All flights are one-way flights.

You may assume that there is a route from Syrjälä to Lehmälä.

  • $1 \le n \le 10^5$
  • $1 \le m \le 2 \cdot 10^5$
  • $1 \le a,b \le n$
  • $1 \le c \le 10^9$

Output Format(To the terminal/stdout)

First print an integer $k$ : the number of cities that are certainly in the route. After this, print the $k$ cities sorted in increasing order.

Sample Input

Copy
5 6
1 2 3
1 3 4
2 3 1
2 4 5
3 4 1
4 5 8
 · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · · \n

Sample Output

Copy
4
1 3 4 5
 \n
 · · · \n
Source: CSES, Advanced Graph Problems, 1203

Submit

请先 登录

© 2025 FAQs