8.134 On a circle, there are 20 real numbers. It is allowed to replace three consecutive numbers with (still placed in the original order). If initially, the 20 numbers are placed in a clockwise direction, can the array be transformed into after several such transformations?
Problem 1074
Official solution
[Solution] It can be achieved. Imagine placing 20 integers on a circle, such that the differences are exactly the original array 1, . Since the sum of the original array is 0, this is possible. For example, we can take . It is not difficult to verify that the transformation in the original array is equivalent to the transformation in the new array, where , i.e., the allowed transformation in the original array becomes the exchange of two adjacent numbers in the new array. The new array can clearly be transformed into the following order through several exchanges of adjacent numbers: , at which point the corresponding difference array is exactly .