CF925D.Aztec Catacombs

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Indiana Jones found ancient Aztec catacombs containing a golden idol. The catacombs consists of nn caves. Each pair of caves is connected with a two-way corridor that can be opened or closed. The entrance to the catacombs is in the cave 11 , the idol and the exit are in the cave nn .

When Indiana goes from a cave xx to a cave yy using an open corridor, all corridors connected to the cave xx change their state: all open corridors become closed, all closed corridors become open. Indiana wants to go from cave 11 to cave nn going through as small number of corridors as possible. Help him find the optimal path, or determine that it is impossible to get out of catacombs.

输入格式

The first line contains two integers nn and mm ( 2n31052 \leq n \leq 3\cdot 10^5 , 0m31050 \leq m \leq 3 \cdot 10^5 ) — the number of caves and the number of open corridors at the initial moment.

The next mm lines describe the open corridors. The ii -th of these lines contains two integers uiu_i and viv_i ( 1ui,vin1 \leq u_i, v_i \leq n , uiviu_i \neq v_i ) — the caves connected by the ii -th open corridor. It is guaranteed that each unordered pair of caves is presented at most once.

输出格式

If there is a path to exit, in the first line print a single integer kk — the minimum number of corridors Indians should pass through ( 1k1061 \leq k \leq 10^6 ). In the second line print k+1k+1 integers x0,,xkx_0, \ldots, x_k — the number of caves in the order Indiana should visit them. The sequence x0,,xkx_0, \ldots, x_k should satisfy the following:

  • x0=1x_0 = 1 , xk=nx_k = n ;
  • for each ii from 11 to kk the corridor from xi1x_{i - 1} to xix_i should be open at the moment Indiana walks along this corridor.

If there is no path, print a single integer 1-1 .

We can show that if there is a path, there is a path consisting of no more than 10610^6 corridors.

输入输出样例

  • 输入#1

    4 4
    1 2
    2 3
    1 3
    3 4
    

    输出#1

    2
    1 3 4 
    
  • 输入#2

    4 2
    1 2
    2 3
    

    输出#2

    4
    1 2 3 1 4 
    
首页