跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2462. Ant on the Tree

    ID: 2468 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>构造搜索算法思想数据结构提高难度共享题库Codeforces英文题面题目来源题面语言

Ant on the Tree

题目描述

D. Ant on the Tree
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 n vertexes in the tree, and they are connected by n-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.

Input

The first line contains integer n (3≤n≤300) − amount of vertexes in the tree. Next n-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 1. The root of the tree has number 1. The last line contains k integers, where k 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.

Output

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

Examples
Input
3
1 2
2 3
3
Output
1 2 3 2 1 
Input
6
1 2
1 3
2 4
4 5
4 6
5 6 3
Output
1 2 4 5 4 6 4 2 1 3 1 
Input
6
1 2
1 3
2 4
4 5
4 6
5 3 6
Output
-1

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2095 题。保留原作者与原赛事署名。