CF1760C.Advantage
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n participants in a competition, participant i having a strength of si .
Every participant wonders how much of an advantage they have over the other best participant. In other words, each participant i wants to know the difference between si and sj , where j is the strongest participant in the competition, not counting i (a difference can be negative).
So, they ask you for your help! For each i ( 1≤i≤n ) output the difference between si and the maximum strength of any participant other than participant i .
输入格式
The input consists of multiple test cases. The first line contains an integer t ( 1≤t≤1000 ) — the number of test cases. The descriptions of the test cases follow.
The first line of each test case contains an integer n ( 2≤n≤2⋅105 ) — the length of the array.
The following line contains n space-separated positive integers s1 , s2 , ..., sn ( 1≤si≤109 ) — the strengths of the participants.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, output n space-separated integers. For each i ( 1≤i≤n ) output the difference between si and the maximum strength of any other participant.
输入输出样例
输入#1
5 4 4 7 3 5 2 1 2 5 1 2 3 4 5 3 4 9 4 4 4 4 4 4
输出#1
-3 2 -4 -2 -1 1 -4 -3 -2 -1 1 -5 5 -5 0 0 0 0
说明/提示
For the first test case:
- The first participant has a strength of 4 and the largest strength of a participant different from the first one is 7 , so the answer for the first participant is 4−7=−3 .
- The second participant has a strength of 7 and the largest strength of a participant different from the second one is 5 , so the answer for the second participant is 7−5=2 .
- The third participant has a strength of 3 and the largest strength of a participant different from the third one is 7 , so the answer for the third participant is 3−7=−4 .
- The fourth participant has a strength of 5 and the largest strength of a participant different from the fourth one is 7 , so the answer for the fourth participant is 5−7=−2 .