CF1490E.Accidental Victory
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A championship is held in Berland, in which n players participate. The player with the number i has ai ( ai≥1 ) tokens.
The championship consists of n−1 games, which are played according to the following rules:
- in each game, two random players with non-zero tokens are selected;
- the player with more tokens is considered the winner of the game (in case of a tie, the winner is chosen randomly);
- the winning player takes all of the loser's tokens;
The last player with non-zero tokens is the winner of the championship.
All random decisions that are made during the championship are made equally probable and independently.
For example, if n=4 , a=[1,2,4,3] , then one of the options for the game (there could be other options) is:
- during the first game, the first and fourth players were selected. The fourth player has more tokens, so he takes the first player's tokens. Now a=[0,2,4,4] ;
- during the second game, the fourth and third players were selected. They have the same number of tokens, but in a random way, the third player is the winner. Now a=[0,2,8,0] ;
- during the third game, the second and third players were selected. The third player has more tokens, so he takes the second player's tokens. Now a=[0,0,10,0] ;
- the third player is declared the winner of the championship.
Championship winners will receive personalized prizes. Therefore, the judges want to know in advance which players have a chance of winning, i.e have a non-zero probability of winning the championship. You have been asked to find all such players.
输入格式
The first line contains one integer t ( 1≤t≤104 ) — the number of test cases. Then t test cases follow.
The first line of each test case consists of one positive integer n ( 1≤n≤2⋅105 ) — the number of players in the championship.
The second line of each test case contains n positive integers a1,a2,…,an ( 1≤ai≤109 ) — the number of tokens the players have.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, print the number of players who have a nonzero probability of winning the championship. On the next line print the numbers of these players in increasing order. Players are numbered starting from one in the order in which they appear in the input.
输入输出样例
输入#1
2 4 1 2 4 3 5 1 1 1 1 1
输出#1
3 2 3 4 5 1 2 3 4 5