原题链接:https://codeforces.com/contest/1405/problems
测试样例
input
3
2
1 2
6
2 1 6 5 4 3
5
2 4 3 1 5
output
2 1
1 2 5 6 3 4
3 1 5 2 4
Note
In the first test case, F§=sort([1+2])=[3].
And F(p′)=sort([2+1])=[3].
In the second test case, F§=sort([2+1,1+6,6+5,5+4,4+3])=sort([3,7,11,9,7])=[3,7,7,9,11].
And F(p′)=sort([1+2,2+5,5+6,6+3,3+4])=sort([3,7,11,9,7])=[3,7,7,9,11].
In the third test case, F§=sort([2+4,4+3,3+1,1+5])=sort([6,7,4,6])=[4,6,6,7].
And F(p′)=sort([3+1,1+5,5+2,2+4])=sort([4,6,7,6])=[4,6,6,7].
题意: 给你一个1~n的排列数组,请你输出一个1 ~n的排列数组和给定的顺序不同,使得F§相同。
解题思路: 一道思维水题,既然是这样,我们想到的就是不能更换组合的顺序,那么我们将排列数组反过来构建就可以了,这样组合是不变的。
AC代码
/*
*
*/
//POJ不支持
//i为循环变量,a为初始值,n为界限值,递增
//i为循环变量, a为初始值,n为界限值,递减。
using namespace std;
const int inf = 0x3f3f3f3f;//无穷大
const int maxn = 1e5;//最大值。
typedef long long ll;
typedef long double ld;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
//*******************************分割线,以上为自定义代码模板***************************************//
int t,n,a[maxn];
int main(){
//freopen("in.txt", "r", stdin);//提交的时候要注释掉
IOS;
while(cin>>t){
while(t--){
cin>>n;
rep(i,0,n-1){
cin>>a[i];
}
per(i,n-1,0){
cout<<a[i]<<" ";
}
cout<<endl;
}
}