22618_IdealPa

2022-5-16 18:22| 发布者: Hocassian| 查看: 22| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-5-89506790998700-Problem List-采集的数据-后羿采集器.html

Pro.ID

22618

Title

Ideal Path

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=22618

AC

7

Submit

22

Ratio

31.82%

时间&空间限制

  • Time Limit: 40000/20000 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Others)
  • 描述

    New labyrinth attraction is open in New Lostland amusement park. The labyrinth consists of n rooms connected by m passages. Each passage is colored into some color ci. Visitors of the labyrinth are dropped from the helicopter to the room number 1 and their goal is to get to the labyrinth exit located in the room number n.

    Labyrinth owners are planning to run a contest tomorrow. Several runners will be dropped to the room number 1. They will run to the room number n writing down colors of passages as they run through them. The contestant with the shortest sequence of colors is the winner of the contest. If there are several contestants with the same sequence length, the one with the ideal path is the winner. The path is the ideal path if its color sequence is the lexicographically smallest among shortest paths.

    Andrew is preparing for the contest. He took a helicopter tour above New Lostland and made a picture of the labyrinth. Your task is to help him find the ideal path from the room number 1 to the room number n that would allow him to win the contest.

    Note

    A sequence (a1 , a2 , . . . , ak ) is lexicographically smaller than a sequence ( b1 , b2 , . . . , bk ) if there exists i such that ai < bi, and aj = bj for all j < i.

    输入

    The first line of the input file contains integers n and m — the number of rooms and passages, respectively ( 2 ≤ n ≤ 100000, 1 ≤ m ≤ 200000 ). The following m lines describe passages, each passage is described with three integer numbers: ai, bi, and ci — the numbers of rooms it connects and its color ( 1 ≤ ai, bin, 1 ≤ ci ≤ 109 ). Each passage can be passed in either direction. Two rooms can be connected with more than one passage, there can be a passage from a room to itself. It is guaranteed that it is possible to reach the room number n from the room number 1.

    输出

    Description

    New labyrinth attraction is open in New Lostland amusement park. The labyrinth consists of n rooms connected by m passages. Each passage is colored into some color ci. Visitors of the labyrinth are dropped from the helicopter to the room number 1 and their goal is to get to the labyrinth exit located in the room number n.

    Labyrinth owners are planning to run a contest tomorrow. Several runners will be dropped to the room number 1. They will run to the room number n writing down colors of passages as they run through them. The contestant with the shortest sequence of colors is the winner of the contest. If there are several contestants with the same sequence length, the one with the ideal path is the winner. The path is the ideal path if its color sequence is the lexicographically smallest among shortest paths.

    Andrew is preparing for the contest. He took a helicopter tour above New Lostland and made a picture of the labyrinth. Your task is to help him find the ideal path from the room number 1 to the room number n that would allow him to win the contest.

    Note

    A sequence (a1 , a2 , . . . , ak ) is lexicographically smaller than a sequence ( b1 , b2 , . . . , bk ) if there exists i such that ai < bi, and aj = bj for all j < i.

    Input

    The first line of the input file contains integers n and m — the number of rooms and passages, respectively ( 2 ≤ n ≤ 100000, 1 ≤ m ≤ 200000 ). The following m lines describe passages, each passage is described with three integer numbers: ai, bi, and ci — the numbers of rooms it connects and its color ( 1 ≤ ai, bin, 1 ≤ ci ≤ 109 ). Each passage can be passed in either direction. Two rooms can be connected with more than one passage, there can be a passage from a room to itself. It is guaranteed that it is possible to reach the room number n from the room number 1.

    Output

    The first line of the output file must contain k — the length of the shortest path from the room number 1 to the room number n. The second line must contain k numbers — the colors of passages in the order they must be passed in the ideal path.

    Sample Input

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

    Sample Output

    2
    1 3

    Source

    样例输入

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

    样例输出

    2
    1 3

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部