CF1283C.Friends and Gifts
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n friends who want to give gifts for the New Year to each other. Each friend should give exactly one gift and receive exactly one gift. The friend cannot give the gift to himself.
For each friend the value fi is known: it is either fi=0 if the i -th friend doesn't know whom he wants to give the gift to or 1≤fi≤n if the i -th friend wants to give the gift to the friend fi .
You want to fill in the unknown values ( fi=0 ) in such a way that each friend gives exactly one gift and receives exactly one gift and there is no friend who gives the gift to himself. It is guaranteed that the initial information isn't contradictory.
If there are several answers, you can print any.
输入格式
The first line of the input contains one integer n ( 2≤n≤2⋅105 ) — the number of friends.
The second line of the input contains n integers f1,f2,…,fn ( 0≤fi≤n , fi=i , all fi=0 are distinct), where fi is the either fi=0 if the i -th friend doesn't know whom he wants to give the gift to or 1≤fi≤n if the i -th friend wants to give the gift to the friend fi . It is also guaranteed that there is at least two values fi=0 .
输出格式
Print n integers nf1,nf2,…,nfn , where nfi should be equal to fi if fi=0 or the number of friend whom the i -th friend wants to give the gift to. All values nfi should be distinct, nfi cannot be equal to i . Each friend gives exactly one gift and receives exactly one gift and there is no friend who gives the gift to himself.
If there are several answers, you can print any.
输入输出样例
输入#1
5 5 0 0 2 4
输出#1
5 3 1 2 4
输入#2
7 7 0 0 1 4 0 6
输出#2
7 3 2 1 4 5 6
输入#3
7 7 4 0 3 0 5 1
输出#3
7 4 2 3 6 5 1
输入#4
5 2 1 0 0 0
输出#4
2 1 4 5 3