• B. Sorted Adjacent Differences


    B. Sorted Adjacent Differences

    time limit per test

    1 second

    memory limit per test

    256 megabytes

    input

    standard input

    output

    standard output

    You have array of nn numbers a1,a2,…,ana1,a2,…,an.

    Rearrange these numbers to satisfy |a1−a2|≤|a2−a3|≤…≤|an−1−an||a1−a2|≤|a2−a3|≤…≤|an−1−an|, where |x||x| denotes absolute value of xx. It's always possible to find such rearrangement.

    Note that all numbers in aa are not necessarily different. In other words, some numbers of aa may be same.

    You have to answer independent tt test cases.

    Input

    The first line contains a single integer tt (1≤t≤1041≤t≤104) — the number of test cases.

    The first line of each test case contains single integer nn (3≤n≤1053≤n≤105) — the length of array aa. It is guaranteed that the sum of values of nn over all test cases in the input does not exceed 105105.

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

    Output

    For each test case, print the rearranged version of array aa which satisfies given condition. If there are multiple valid rearrangements, print any of them.

    Example

    input

    Copy

    2
    6
    5 -2 4 8 6 5
    4
    8 1 4 2
    

    output

    Copy

    5 5 4 6 8 -2
    1 2 4 8
    

    Note

    In the first test case, after given rearrangement, |a1−a2|=0≤|a2−a3|=1≤|a3−a4|=2≤|a4−a5|=2≤|a5−a6|=10|a1−a2|=0≤|a2−a3|=1≤|a3−a4|=2≤|a4−a5|=2≤|a5−a6|=10. There are other possible answers like "5 4 5 6 -2 8".

    In the second test case, after given rearrangement, |a1−a2|=1≤|a2−a3|=2≤|a3−a4|=4|a1−a2|=1≤|a2−a3|=2≤|a3−a4|=4. There are other possible answers like "2 4 8 1".

    =========================================================================

    排序,先让最小和最大的放在最后,这样一定是满足的

    a1 a2  a3....an-1 an

    a2 a3  ....an-1         a1  an

    再把a2 an-1放在最后, a2 an-1  a1 an

    首先a1最小,它和an的差值绝对值一定最大,与an-1的差值绝对值不一定最大,但是一定比a2和an-1的差值绝对值大,然后以此类类推即可

    1. # include
    2. # include
    3. # include
    4. using namespace std;
    5. int a[100000+10];
    6. int ans[100000+10];
    7. int main ()
    8. {
    9. int t;
    10. cin>>t;
    11. while(t--)
    12. {
    13. int n;
    14. cin>>n;
    15. for(int i=1;i<=n;i++)
    16. {
    17. cin>>a[i];
    18. }
    19. sort(a+1,a+1+n);
    20. int left=1,right=n,cnt=0;
    21. int len=n;
    22. while(left<=right)
    23. {
    24. ans[len]=a[right];
    25. len--;
    26. if(!len)
    27. {
    28. break;
    29. }
    30. ans[len]=a[left];
    31. len--;
    32. if(!len)
    33. break;
    34. left++;
    35. right--;
    36. }
    37. for(int i=1;i<=n;i++)
    38. {
    39. cout<" ";
    40. }
    41. cout<
    42. }
    43. return 0;
    44. }

  • 相关阅读:
    YYGH-8-预约挂号
    Yolov5的类激活图
    RNN 浅析
    VB在窗体中显示1000以内的完数
    远程办公会不会在未来五到十年成为普遍现象?
    机器学习 分类、回归、聚类、特征工程区别
    17.0、Java多线程——synchronized同步方法及同步块
    【JavaScript——流程控制的详解】
    将日志压缩并归档到 Amazon S3 Glacier 存储层中
    idea系列---【上一次打开springboot项目还好好的,现在打开突然无法启动了】
  • 原文地址:https://blog.csdn.net/jisuanji2606414/article/details/126282979