308263: CF1490E. Accidental Victory

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Accidental Victory

题意翻译

有 $n$ 支队伍参加比赛,每个队伍初始时有一些代币。 比赛每一轮随机挑两个代币数不为0的队伍,然后代币多的队伍获胜,代币少的队伍把代币全部给代币多的(代币数量相同则随机),直到最后只有一个队伍有代币, 这个队伍获胜。 求哪些队伍是有可能获胜的。 $t ≤ 10^4$ $\sum{n} ≤ 2*10^5$ $1 ≤ a_i ≤ 10^9$

题目描述

A championship is held in Berland, in which $ n $ players participate. The player with the number $ i $ has $ a_i $ ( $ a_i \ge 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 \le t \le 10^4 $ ) — the number of test cases. Then $ t $ test cases follow. The first line of each test case consists of one positive integer $ n $ ( $ 1 \le n \le 2 \cdot 10^5 $ ) — the number of players in the championship. The second line of each test case contains $ n $ positive integers $ a_1, a_2, \ldots, a_n $ ( $ 1 \le a_i \le 10^9 $ ) — the number of tokens the players have. It is guaranteed that the sum of $ n $ over all test cases does not exceed $ 2 \cdot 10^5 $ .

输出格式


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

Input

题意翻译

有 $n$ 支队伍参加比赛,每个队伍初始时有一些代币。 比赛每一轮随机挑两个代币数不为0的队伍,然后代币多的队伍获胜,代币少的队伍把代币全部给代币多的(代币数量相同则随机),直到最后只有一个队伍有代币, 这个队伍获胜。 求哪些队伍是有可能获胜的。 $t ≤ 10^4$ $\sum{n} ≤ 2*10^5$ $1 ≤ a_i ≤ 10^9$

加入题单

算法标签: