#P1618E. Singers' Tour
Singers' Tour
No submission language available for this problem.
Description
towns are arranged in a circle sequentially. The towns are numbered from to in clockwise order. In the -th town, there lives a singer with a repertoire of minutes for each .
Each singer visited all towns in clockwise order, starting with the town he lives in, and gave exactly one concert in each town. In addition, in each town, the -th singer got inspired and came up with a song that lasts minutes. The song was added to his repertoire so that he could perform it in the rest of the cities.
Hence, for the -th singer, the concert in the -th town will last minutes, in the -th town the concert will last minutes, ..., in the -th town the duration of the concert will be , ..., in the town — minutes.
You are given an array of integer numbers, where is the total duration of concerts in the -th town. Reconstruct any correct sequence of positive integers or say that it is impossible.
The first line contains one integer ) — the number of test cases. Then the test cases follow.
Each test case consists of two lines. The first line contains a single integer () — the number of cities. The second line contains integers () — the total duration of concerts in -th city.
The sum of over all test cases does not exceed .
For each test case, print the answer as follows:
If there is no suitable sequence , print NO. Otherwise, on the first line print YES, on the next line print the sequence of integers, where () is the initial duration of repertoire of the -th singer. If there are multiple answers, print any of them.
Input
The first line contains one integer ) — the number of test cases. Then the test cases follow.
Each test case consists of two lines. The first line contains a single integer () — the number of cities. The second line contains integers () — the total duration of concerts in -th city.
The sum of over all test cases does not exceed .
Output
For each test case, print the answer as follows:
If there is no suitable sequence , print NO. Otherwise, on the first line print YES, on the next line print the sequence of integers, where () is the initial duration of repertoire of the -th singer. If there are multiple answers, print any of them.
Samples
Note
Let's consider the -st test case of the example:
- the -st singer in the -st city will give a concert for minutes, in the -nd — for minutes, in the -rd — for minutes;
- the -nd singer in the -st city will give a concert for minutes, in the -nd — for minute, in the -rd - for minutes;
- the -rd singer in the -st city will give a concert for minutes, in the -nd — for minutes, in the -rd — for minutes.