[Codeforces Round #611(Div. 3)] C. Friends and Gifts(랜덤 대법이 좋다)
C. Friends and Gifts
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
There are nn 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 fifi is known: it is either fi=0fi=0 if the ii-th friend doesn't know whom he wants to give the gift to or 1≤fi≤n1≤fi≤n if the ii-th friend wants to give the gift to the friend fifi.
You want to fill in the unknown values (fi=0fi=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.
Input
The first line of the input contains one integer nn (2≤n≤2⋅1052≤n≤2⋅105) — the number of friends.
The second line of the input contains nn integers f1,f2,…,fnf1,f2,…,fn (0≤fi≤n0≤fi≤n, fi≠ifi≠i, all fi≠0fi≠0 are distinct), where fifi is the either fi=0fi=0 if the ii-th friend doesn't know whom he wants to give the gift to or 1≤fi≤n1≤fi≤n if the ii-th friend wants to give the gift to the friend fifi. It is also guaranteed that there is at least two values fi=0fi=0.
Output
Print nn integers nf1,nf2,…,nfnnf1,nf2,…,nfn, where nfinfi should be equal to fifi if fi≠0fi≠0 or the number of friend whom the ii-th friend wants to give the gift to. All values nfinfi should be distinct, nfinfi cannot be equal to ii. 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.
Examples
input
Copy
5
5 0 0 2 4
output
Copy
5 3 1 2 4
input
Copy
7
7 0 0 1 4 0 6
output
Copy
7 3 2 1 4 5 6
input
Copy
7
7 4 0 3 0 5 1
output
Copy
7 4 2 3 6 5 1
input
Copy
5
2 1 0 0 0
output
Copy
2 1 4 5 3
제목:
정수 n과 1~n의 전체 배열 p를 정하고,
p중 적어도 2개의 숫자가 지워졌다(지워진 후 p[i]=0). 지워진 부분을 보충해 보자.
만족:
1~n의 전체 배열이며 p[i]는 i와 같지 않다
아이디어:
이 문제는 기민하게 무작위로 풀 수 있다.
우리는 지워진 숫자를vector에 추가하고,
mt 랜덤수\(mt19937 generator(time(0)\)를 엔진으로
shuffle 함수를 호출하여vector의 순서를 무작위로 어지럽히고 p에 p[i]=i가 존재하지 않을 때까지 만족시키면 됩니다
코드:
#include
#include
#include
#include
#include
#include
#include
#include
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.