CF29D.Ant on the Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Connected undirected graph without cycles is called a tree. Trees is a class of graphs which is interesting not only for people, but for ants too.

An ant stands at the root of some tree. He sees that there are nn vertexes in the tree, and they are connected by n1n-1 edges so that there is a path between any pair of vertexes. A leaf is a distinct from root vertex, which is connected with exactly one other vertex.

The ant wants to visit every vertex in the tree and return to the root, passing every edge twice. In addition, he wants to visit the leaves in a specific order. You are to find some possible route of the ant.

输入格式

The first line contains integer nn ( 3<=n<=3003<=n<=300 ) — amount of vertexes in the tree. Next n1n-1 lines describe edges. Each edge is described with two integers — indexes of vertexes which it connects. Each edge can be passed in any direction. Vertexes are numbered starting from 11 . The root of the tree has number 11 . The last line contains kk integers, where kk is amount of leaves in the tree. These numbers describe the order in which the leaves should be visited. It is guaranteed that each leaf appears in this order exactly once.

输出格式

If the required route doesn't exist, output -1. Otherwise, output 2n12n-1 numbers, describing the route. Every time the ant comes to a vertex, output it's index.

输入输出样例

  • 输入#1

    3
    1 2
    2 3
    3
    

    输出#1

    1 2 3 2 1 
  • 输入#2

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

    输出#2

    1 2 4 5 4 6 4 2 1 3 1 
  • 输入#3

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

    输出#3

    -1
    
首页