• 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. }

  • 相关阅读:
    高通Android随身WIFI屏蔽商家远程控制断网
    Consul安装
    【微机原理及接口技术】中断系统
    elementui el-tree回显多个节点高亮
    Node.js精进(4)——事件触发器
    2023年中国互联网视听平台发展趋势分析:未来增速将从2023年开始缓慢提升[图]
    Mac下的平铺式桌面 - Yabai
    通讯网关软件024——利用CommGate X2Access实现Modbus TCP数据转储Access
    数据库Redis(二):基本数据类型
    基于5G智慧园区的车联网系统应用示范
  • 原文地址:https://blog.csdn.net/jisuanji2606414/article/details/126282979