Educational Codeforces Round 83 (Rated for Div. 2) B. Bogosort(排序/思维)

You are given an array a1,a2,,ana1,a2,…,an . Array is good if for each pair of indexes i<ji<j the condition jajiaij−aj≠i−ai holds. Can you shuffle this array so that it becomes good? To shuffle an array means to reorder its elements arbitrarily (leaving the initial order is also an option).

For example, if a=[1,1,3,5]a=[1,1,3,5] , then shuffled arrays [1,3,5,1][1,3,5,1] , [3,5,1,1][3,5,1,1] and [5,3,1,1][5,3,1,1] are good, but shuffled arrays [3,1,5,1][3,1,5,1] , [1,1,3,5][1,1,3,5] and [1,1,5,3][1,1,5,3] aren't.

It's guaranteed that it's always possible to shuffle an array to meet this condition.

Input

The first line contains one integer tt (1t1001≤t≤100 ) — the number of test cases.

The first line of each test case contains one integer nn (1n1001≤n≤100 ) — the length of array aa .

The second line of each test case contains nn integers a1,a2,,ana1,a2,…,an (1ai1001≤ai≤100 ).

Output

For each test case print the shuffled version of the array aa which is good.

Example
Input
Copy
3
1
7
4
1 1 3 5
6
3 2 1 5 6 4
Output
Copy
7
1 5 1 3
2 4 6 1 3 5
调换一下不等号两边的项,变成了j-i≠aj-ai,这样就好办了,因为注意到输出任意序列即可,而i要小于j,只需要把原序列降序排列,就能使j-i>0而aj-ai<=0。
复制代码
#include <bits/stdc++.h>
using namespace std;
int n,i,a[105];
bool cmp(int a, int b)
{
    return a>b;
}
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        cin>>n;
        for(i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
        }
        sort(a+1,a+n+1,cmp);
        for(i=1;i<=n;i++)
        {
            printf("%d ",a[i]);
        }
        cout<<endl;
    }
    return 0;
}
复制代码

 

posted @   脂环  阅读(205)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示
主题色彩