欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Codeforces Round #686 (Div. 3) A. Special Permutation

程序员文章站 2022-04-20 08:02:32
A. Special Permutationtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given one integer n (n>1).Recall that a permutation of length n is an array consisting of n distinct integers from 1...

A. Special Permutation
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given one integer n (n>1).

Recall that a permutation of length n is an array consisting of n distinct integers from 1 to n in arbitrary order. For example, [2,3,1,5,4] is a permutation of length 5, but [1,2,2] is not a permutation (2 appears twice in the array) and [1,3,4] is also not a permutation (n=3 but there is 4 in the array).

Your task is to find a permutation p of length n that there is no index i (1≤i≤n) such that pi=i (so, for all i from 1 to n the condition pi≠i should be satisfied).

You have to answer t independent test cases.

If there are several answers, you can print any. It can be proven that the answer exists for each n>1.

Input
The first line of the input contains one integer t (1≤t≤100) — the number of test cases. Then t test cases follow.

The only line of the test case contains one integer n (2≤n≤100) — the length of the permutation you have to find.

Output
For each test case, print n distinct integers p1,p2,…,pn — a permutation that there is no index i (1≤i≤n) such that pi=i (so, for all i from 1 to n the condition pi≠i should be satisfied).

If there are several answers, you can print any. It can be proven that the answer exists for each n>1.

Example
input
2
2
5
output
2 1
2 1 5 3 4

My Answer Code:

/*
	Author:Albert Tesla Wizard
	Time:2020/11/27 17:50
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int t;
    cin>>t;
    vector<int>a(t);
    for(int i=0;i<t;i++)cin>>a[i];
    for(int i=0;i<t;i++)
    {
        int record=a[i];
        vector<int>b(record);
        for(int j=0;j<record;j++)b[j]=j+1;
        if(record%2==0)
        {
            for(int k=record-1;k>=0;k--)cout<<b[k]<<" ";
            cout<<'\n';
        }
        else
        {
            int temp;
            temp=b[0];
            b[0]=b[record/2];
            b[record/2]=temp;
            for(int m=record-1;m>=0;m--)cout<<b[m]<<" ";
            cout<<'\n';
        }
    }
}

本文地址:https://blog.csdn.net/AlberTesla/article/details/110239006