Cerinta completa
Given a sequence of integers, where each element is distinct and satisfies . For each where , that is increments from to , find any integer such that and keep a history of the values of in a return array.
Example
Each value of between and , the length of the sequence, is analyzed as follows:
- , so
- , so
- , so
- , so
- , so
The values for are .
Function Description
Complete the permutationEquation function in the editor below.
permutationEquation has the following parameter(s):
- int p[n]: an array of integers
Returns
- int[n]: the values of for all in the arithmetic sequence to
Input Format
The first line contains an integer , the number of elements in the sequence.
The second line contains space-separated integers where .
Constraints
- , where .
- Each element in the sequence is distinct.
Sample Input 0
3
2 3 1
Sample Output 0
2
3
1
Explanation 0
Given the values of , , and , we calculate and print the following values for each from to :
- , so we print the value of on a new line.
- , so we print the value of on a new line.
- , so we print the value of on a new line.
Sample Input 1
5
4 3 5 1 2
Sample Output 1
1
3
5
4
2
Limbajul de programare folosit: python3
Cod:
#!/bin/python3
def permutationEquation(p):
n = len(p)
pos = [0] * (n + 1)
for i, v in enumerate(p, 1):
pos[v] = i
return [pos[pos[x]] for x in range(1, n + 1)]
if __name__ == '__main__':
n = int(input().strip())
p = list(map(int, input().split()))
ans = permutationEquation(p)
print(*ans, sep='\n')
Scor obtinut: 1.0
Submission ID: 464587712
Link challenge: https://www.hackerrank.com/challenges/permutation-equation/problem
