CF1579B.Shifting Sort

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The new generation external memory contains an array of integers a[1n]=[a1,a2,,an]a[1 \ldots n] = [a_1, a_2, \ldots, a_n] .

This type of memory does not support changing the value of an arbitrary element. Instead, it allows you to cut out any segment of the given array, cyclically shift (rotate) it by any offset and insert it back into the same place.

Technically, each cyclic shift consists of two consecutive actions:

  1. You may select arbitrary indices ll and rr ( 1l<rn1 \le l < r \le n ) as the boundaries of the segment.
  2. Then you replace the segment a[lr]a[l \ldots r] with it's cyclic shift to the left by an arbitrary offset dd . The concept of a cyclic shift can be also explained by following relations: the sequence [1,4,1,3][1, 4, 1, 3] is a cyclic shift of the sequence [3,1,4,1][3, 1, 4, 1] to the left by the offset 11 and the sequence [4,1,3,1][4, 1, 3, 1] is a cyclic shift of the sequence [3,1,4,1][3, 1, 4, 1] to the left by the offset 22 .

For example, if a=[1,3,2,8,5]a = [1, \color{blue}{3, 2, 8}, 5] , then choosing l=2l = 2 , r=4r = 4 and d=2d = 2 yields a segment a[24]=[3,2,8]a[2 \ldots 4] = [3, 2, 8] . This segment is then shifted by the offset d=2d = 2 to the left, and you get a segment [8,3,2][8, 3, 2] which then takes the place of of the original elements of the segment. In the end you get a=[1,8,3,2,5]a = [1, \color{blue}{8, 3, 2}, 5] .

Sort the given array aa using no more than nn cyclic shifts of any of its segments. Note that you don't need to minimize the number of cyclic shifts. Any method that requires nn or less cyclic shifts will be accepted.

输入格式

The first line contains an integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases.

The next 2t2t lines contain the descriptions of the test cases.

The first line of each test case description contains an integer nn ( 2n502 \leq n \leq 50 ) — the length of the array. The second line consists of space-separated elements of the array aia_i ( 109ai109-10^9 \leq a_i \leq 10^9 ). Elements of array aa may repeat and don't have to be unique.

输出格式

Print tt answers to all input test cases.

The first line of the answer of each test case should contain an integer kk ( 0kn0 \le k \le n ) — the number of actions to sort the array. The next kk lines should contain descriptions of the actions formatted as " ll rr dd " (without quotes) where ll and rr ( 1l<rn1 \le l < r \le n ) are the boundaries of the segment being shifted, while dd ( 1drl1 \le d \le r - l ) is the offset value. Please remember that only the cyclic shifts to the left are considered so the chosen segment will be shifted by the offset dd to the to the left.

Note that you are not required to find the minimum number of cyclic shifts needed for sorting. Any sorting method where the number of shifts does not exceed nn will be accepted.

If the given array aa is already sorted, one of the possible answers is k=0k = 0 and an empty sequence of cyclic shifts.

If there are several possible answers, you may print any of them.

输入输出样例

  • 输入#1

    4
    2
    2 1
    3
    1 2 1
    4
    2 4 1 3
    5
    2 5 1 4 3

    输出#1

    1
    1 2 1
    1
    1 3 2
    3
    2 4 1
    2 3 1
    1 3 2
    4
    2 4 2
    1 5 3
    1 2 1
    1 3 1

说明/提示

Explanation of the fourth data set in the example:

  1. The segment a[24]a[2 \ldots 4] is selected and is shifted to the left by 22 : [2,5,1,4,3][2,4,5,1,3][2, {\color{blue}{5, 1, 4}}, 3] \longrightarrow [2, {\color{blue}{4, 5, 1}}, 3]
  2. The segment a[15]a[1 \ldots 5] is then selected and is shifted to the left by 33 : [2,4,5,1,3][1,3,2,4,5][{\color{blue}{2, 4, 5, 1, 3}}] \longrightarrow [{\color{blue}{1, 3, 2, 4, 5}}]
  3. After that the segment a[12]a[1 \ldots 2] is selected and is shifted to the left by 11 : [1,3,2,4,5][3,1,2,4,5][{\color{blue}{1, 3}}, 2, 4, 5] \longrightarrow [{\color{blue}{3, 1}}, 2, 4, 5]
  4. And in the end the segment a[13]a[1 \ldots 3] is selected and is shifted to the left by 11 : [3,1,2,4,5][1,2,3,4,5][{\color{blue}{3, 1, 2}}, 4, 5] \longrightarrow [{\color{blue}{1, 2, 3}}, 4, 5]
首页