CF618B.Guess the Permutation
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Bob has a permutation of integers from 1 to n . Denote this permutation as p . The i -th element of p will be denoted as pi . For all pairs of distinct integers i,j between 1 and n , he wrote the number ai,j=min(pi,pj) . He writes ai,i=0 for all integer i from 1 to n .
Bob gave you all the values of ai,j that he wrote down. Your job is to reconstruct any permutation that could have generated these values. The input will be formed so that it is guaranteed that there is at least one solution that is consistent with the information given.
输入格式
The first line of the input will contain a single integer n ( 2<=n<=50 ).
The next n lines will contain the values of ai,j . The j -th number on the i -th line will represent ai,j . The i -th number on the i -th line will be 0 . It's guaranteed that ai,j=aj,i and there is at least one solution consistent with the information given.
输出格式
Print n space separated integers, which represents a permutation that could have generated these values. If there are multiple possible solutions, print any of them.
输入输出样例
输入#1
2 0 1 1 0
输出#1
2 1
输入#2
5 0 2 2 1 2 2 0 4 1 3 2 4 0 1 3 1 1 1 0 1 2 3 3 1 0
输出#2
2 5 4 1 3
说明/提示
In the first case, the answer can be 1,2 or 2,1 .
In the second case, another possible answer is 2,4,5,1,3 .