luogu#P10818. [EC Final 2020] Random Shuffle
[EC Final 2020] Random Shuffle
题目描述
Prof. Pang is selecting teams that advance to the world final contest. As the regionals are cancelled, he uses random shuffle to rank the teams. There are teams in total. His code is as follows:
uint64_t x;//uint64_t represents 64-bit unsigned integer
int n;
uint64_t rand() {//this is a xor-shift random generator
x ^= x << 13;
x ^= x >> 7;
x ^= x << 17;
return x;
}
int main() {
cin >> n;
cin >> x;
for (int i = 1; i <= n; i++) {//random shuffle [1, 2,..., n]
a[i] = i;
swap(a[i], a[rand() % i + 1]);
}
for (int i = 1; i <= n; i++) {//print the result
cout << a[i] << (i == n ? '\n' : ' ');
}
}
He compiled and ran his code and then entered and some special nonnegative integer . He printed the result on paper.
One day later, Prof. Pang forgot his choice for . You are given the result of the code and the integer . Please recover the number that Prof. Pang had entered.
输入格式
The first line contains a single integer () -- the number of teams.
The next line contains integers -- the result printed by Prof. Pang's code. It is guaranteed that the result is correct, i.e., there exists an integer () that leads to the result.
输出格式
Output the integer () Prof. Pang had entered. If there are multiple possible 's, print any one.
50
36 22 24 21 27 50 28 14 25 34 18 43 47
13 30 7 10 48 20 16 29 9 8 15 3 31 12
38 19 49 37 1 46 32 4 44 11 35 6 33 26
5 45 17 39 40 2 23 42 41
16659580358178468547
提示
Note that the second line of the sample input is wrapped to fit in the width of page.