CF36E.Two Paths

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

注意这题要加上这个:

freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);

输入格式

Once archaeologists found mm mysterious papers, each of which had a pair of integers written on them. Ancient people were known to like writing down the indexes of the roads they walked along, as « aa bb » or « bb aa », where a,ba,b are the indexes of two different cities joint by the road . It is also known that the mysterious papers are pages of two travel journals (those days a new journal was written for every new journey).

During one journey the traveler could walk along one and the same road several times in one or several directions but in that case he wrote a new entry for each time in his journal. Besides, the archaeologists think that the direction the traveler took on a road had no effect upon the entry: the entry that looks like « aa bb » could refer to the road from aa to bb as well as to the road from bb to aa .

The archaeologists want to put the pages in the right order and reconstruct the two travel paths but unfortunately, they are bad at programming. That’s where you come in. Go help them!

输出格式

The first input line contains integer mm ( 1<=m<=100001<=m<=10000 ). Each of the following mm lines describes one paper. Each description consists of two integers a,ba,b ( 1<=a,b<=100001<=a,b<=10000 , aba≠b ).

输入输出样例

  • 输入#1

    2
    4 5
    4 3
    

    输出#1

    1
    2 
    1
    1
    
  • 输入#2

    1
    1 2
    

    输出#2

    -1
    
首页