307702: CF1399C. Boats Competition
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Boats Competition
题意翻译
有 $n$ 个人要参与两人一组的划船比赛,第 $i$ 个人的质量为 $w_i$ 。 作为比赛的组织者,你希望通过这样的方式使得比赛公平:每队的两位选手的质量和都相等。 即,如果有 $k$ 组,第 $i$ 组的两位选手的质量分别为 $(a_i,b_i)$ ,那么需要满足以下条件: $a_1+b_1=a_2+b_2=...=a_k+b_k=s$ 你需要找到这样的一个 $s$ ,使得队伍数( $k$ )尽可能多。题目描述
There are $ n $ people who want to participate in a boat competition. The weight of the $ i $ -th participant is $ w_i $ . Only teams consisting of two people can participate in this competition. As an organizer, you think that it's fair to allow only teams with the same total weight. So, if there are $ k $ teams $ (a_1, b_1) $ , $ (a_2, b_2) $ , $ \dots $ , $ (a_k, b_k) $ , where $ a_i $ is the weight of the first participant of the $ i $ -th team and $ b_i $ is the weight of the second participant of the $ i $ -th team, then the condition $ a_1 + b_1 = a_2 + b_2 = \dots = a_k + b_k = s $ , where $ s $ is the total weight of each team, should be satisfied. Your task is to choose such $ s $ that the number of teams people can create is the maximum possible. Note that each participant can be in no more than one team. You have to answer $ t $ independent test cases.输入输出格式
输入格式
The first line of the input contains one integer $ t $ ( $ 1 \le t \le 1000 $ ) — the number of test cases. Then $ t $ test cases follow. The first line of the test case contains one integer $ n $ ( $ 1 \le n \le 50 $ ) — the number of participants. The second line of the test case contains $ n $ integers $ w_1, w_2, \dots, w_n $ ( $ 1 \le w_i \le n $ ), where $ w_i $ is the weight of the $ i $ -th participant.
输出格式
For each test case, print one integer $ k $ : the maximum number of teams people can compose with the total weight $ s $ , if you choose $ s $ optimally.
输入输出样例
输入样例 #1
5
5
1 2 3 4 5
8
6 6 6 6 6 6 8 8
8
1 2 2 1 2 1 1 2
3
1 3 3
6
1 1 3 4 2 2
输出样例 #1
2
3
4
1
2