-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermute_elements_of_array_from_p.cpp
56 lines (44 loc) · 1.17 KB
/
permute_elements_of_array_from_p.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//https://ide.geeksforgeeks.org/5JOqgYXtlR
#include<bits/stdc++.h>
using namespace std;
int mod=1e9+7;
#define F(a,b,var) for(int var=a;var<b;var++)
#define FAST_INP ios_base::sync_with_stdio(false);cin.tie(NULL)
int main()
{
//code
FAST_INP;
int T;
cin>>T;
while(T--)
{
int n; cin>>n;
vector<int> v(n);
vector<int> ind(n);
for(int i=0; i<n; i++){
cin>>v[i];
}
for(int i=0; i<n; i++){
cin>>ind[i];
}
for(int i=0; i<n; i++){
while(ind[i] != i){
int change_ind = ind[ind[i]];
int change_val = v[ind[i]];
int curr_ind = ind[i];
int curr_val = v[i];
ind[ind[i]] = curr_ind;
v[ind[i]] = curr_val;
ind[i] = change_ind;
v[i] = change_val;
}
}
for(int i=0; i<n; i++){
cout<<v[i]<<" ";
}
cout<<"\n";
for(int i=0; i<n; i++){
cout<<ind[i]<<" ";
}
}
}