CF1255C.League of Leesins

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Bob is an avid fan of the video game "League of Leesins", and today he celebrates as the League of Leesins World Championship comes to an end!

The tournament consisted of nn ( n5n \ge 5 ) teams around the world. Before the tournament starts, Bob has made a prediction of the rankings of each team, from 11 -st to nn -th. After the final, he compared the prediction with the actual result and found out that the ii -th team according to his prediction ended up at the pip_i -th position ( 1pin1 \le p_i \le n , all pip_i are unique). In other words, pp is a permutation of 1,2,,n1, 2, \dots, n .

As Bob's favorite League player is the famous "3ga", he decided to write down every 33 consecutive elements of the permutation pp . Formally, Bob created an array qq of n2n-2 triples, where qi=(pi,pi+1,pi+2)q_i = (p_i, p_{i+1}, p_{i+2}) for each 1in21 \le i \le n-2 . Bob was very proud of his array, so he showed it to his friend Alice.

After learning of Bob's array, Alice declared that she could retrieve the permutation pp even if Bob rearranges the elements of qq and the elements within each triple. Of course, Bob did not believe in such magic, so he did just the same as above to see Alice's respond.

For example, if n=5n = 5 and p=[1,4,2,3,5]p = [1, 4, 2, 3, 5] , then the original array qq will be [(1,4,2),(4,2,3),(2,3,5)][(1, 4, 2), (4, 2, 3), (2, 3, 5)] . Bob can then rearrange the numbers within each triple and the positions of the triples to get [(4,3,2),(2,3,5),(4,1,2)][(4, 3, 2), (2, 3, 5), (4, 1, 2)] . Note that [(1,4,2),(4,2,2),(3,3,5)][(1, 4, 2), (4, 2, 2), (3, 3, 5)] is not a valid rearrangement of qq , as Bob is not allowed to swap numbers belong to different triples.

As Alice's friend, you know for sure that Alice was just trying to show off, so you decided to save her some face by giving her any permutation pp that is consistent with the array qq she was given.

输入格式

The first line contains a single integer nn ( 5n1055 \le n \le 10^5 ) — the size of permutation pp .

The ii -th of the next n2n-2 lines contains 33 integers qi,1q_{i, 1} , qi,2q_{i, 2} , qi,3q_{i, 3} ( 1qi,jn1 \le q_{i, j} \le n ) — the elements of the ii -th triple of the rearranged (shuffled) array qiq_i , in random order. Remember, that the numbers within each triple can be rearranged and also the positions of the triples can be rearranged.

It is guaranteed that there is at least one permutation pp that is consistent with the input.

输出格式

Print nn distinct integers p1,p2,,pnp_1, p_2, \ldots, p_n ( 1pin1 \le p_i \le n ) such that pp is consistent with array qq .

If there are multiple answers, print any.

输入输出样例

  • 输入#1

    5
    4 3 2
    2 3 5
    4 1 2
    

    输出#1

    1 4 2 3 5 
    
首页