A13737 | Boats Competition
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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
In the first test case of the example, we can reach the optimal answer for $s=6$ . Then the first boat is used by participants $1$ and $5$ and the second boat is used by participants $2$ and $4$ (indices are the same as weights).
In the second test case of the example, we can reach the optimal answer for $s=12$ . Then first $6$ participants can form $3$ pairs.
In the third test case of the example, we can reach the optimal answer for $s=3$ . The answer is $4$ because we have $4$ participants with weight $1$ and $4$ participants with weight $2$ .
In the fourth test case of the example, we can reach the optimal answer for $s=4$ or $s=6$ .
In the fifth test case of the example, we can reach the optimal answer for $s=3$ . Note that participant with weight $3$ can't use the boat because there is no suitable pair for him in the list.
In the second test case of the example, we can reach the optimal answer for $s=12$ . Then first $6$ participants can form $3$ pairs.
In the third test case of the example, we can reach the optimal answer for $s=3$ . The answer is $4$ because we have $4$ participants with weight $1$ and $4$ participants with weight $2$ .
In the fourth test case of the example, we can reach the optimal answer for $s=4$ or $s=6$ .
In the fifth test case of the example, we can reach the optimal answer for $s=3$ . Note that participant with weight $3$ can't use the boat because there is no suitable pair for him in the list.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted