CF923F.Public Service

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are NN cities in Bob's country connected by roads. Some pairs of cities are connected by public transport. There are two competing transport companies — Boblines operating buses and Bobrail running trains. When traveling from AA to BB , a passenger always first selects the mode of transport (either bus or train), and then embarks on a journey. For every pair of cities, there are exactly two ways of how to travel between them without visiting any city more than once — one using only bus routes, and the second using only train routes. Furthermore, there is no pair of cities that is directly connected by both a bus route and a train route.

You obtained the plans of each of the networks. Unfortunately, each of the companies uses different names for the same cities. More precisely, the bus company numbers the cities using integers from 11 to NN , while the train company uses integers between N+1N+1 and 2N2N . Find one possible mapping between those two numbering schemes, such that no pair of cities is connected directly by both a bus route and a train route. Note that this mapping has to map different cities to different cities.

输入格式

The first line contains an integer NN ( 2<=N<=100002<=N<=10000 ), the number of cities.

N1N-1 lines follow, representing the network plan of Boblines. Each contains two integers uu and vv ( 1<=u,v<=N1<=u,v<=N ), meaning that there is a bus route between cities uu and vv .

N1N-1 lines follow, representing the network plan of Bobrail. Each contains two integers uu and vv ( N+1<=u,v<=2NN+1<=u,v<=2N ), meaning that there is a train route between cities uu and vv .

输出格式

If there is no solution, output a single line with the word "No".

If a solution exists, output two lines. On the first line, there should be the word "Yes". On the second line, there should be NN integers P1,P2,...,PNP_{1},P_{2},...,P_{N} ( N+1<=Pi<=2NN+1<=P_{i}<=2N ) — the mapping between the two numbering schemes. More precisely, for iji≠j it should be PiPjP_{i}≠P_{j} , and for every direct bus route (i,j)(i,j) , there is no direct train route between (Pi,Pj)(P_{i},P_{j}) .

If there are multiple solutions, you may print any of them.

输入输出样例

  • 输入#1

    4
    1 2
    2 3
    3 4
    5 6
    6 7
    7 8
    

    输出#1

    Yes
    6 8 5 7
    
  • 输入#2

    4
    1 2
    2 3
    3 4
    5 6
    5 7
    5 8
    

    输出#2

    No
    
  • 输入#3

    7
    1 2
    1 3
    1 4
    1 5
    5 6
    6 7
    8 9
    9 10
    10 11
    11 12
    12 13
    13 14
    

    输出#3

    Yes
    9 14 11 12 13 10 8
    

说明/提示

The first sample (bus lines in red and rail lines in blue):

首页