CF1928D.Lonely Mountain Dungeons
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Once, the people, elves, dwarves, and other inhabitants of Middle-earth gathered to reclaim the treasures stolen from them by Smaug. In the name of this great goal, they rallied around the powerful elf Timothy and began to plan the overthrow of the ruler of the Lonely Mountain.
The army of Middle-earth inhabitants will consist of several squads. It is known that each pair of creatures of the same race, which are in different squads, adds b units to the total strength of the army. But since it will be difficult for Timothy to lead an army consisting of a large number of squads, the total strength of an army consisting of k squads is reduced by (k−1)⋅x units. Note that the army always consists of at least one squad.
It is known that there are n races in Middle-earth, and the number of creatures of the i -th race is equal to ci . Help the inhabitants of Middle-earth determine the maximum strength of the army they can assemble.
输入格式
Each test consists of multiple test cases. The first line contains a single integer t ( 1≤t≤2⋅104 ) — the number of test cases. The description of the test cases follows.
The first line of each test case contains three integers n , b , and x ( 1≤n≤2⋅105 , 1≤b≤106,0≤x≤109 ) — the number of races and the constants b and x described above.
The second line of each test case contains n integers c1,c2,…,cn ( 1≤ci≤2⋅105 ) — the number of creatures of each of the n races.
It is guaranteed that the sum of the values c1+c2+…+cn over all test cases does not exceed 2⋅105 .
输出格式
For each test case, output a single integer — the maximum strength of the army that the inhabitants of Middle-earth can assemble.
输入输出样例
输入#1
5 3 1 0 1 2 3 3 5 10 2 5 3 4 3 3 3 2 1 2 4 1 0 4 1 4 2 4 1 10 4 1 4 2
输出#1
4 40 9 13 0
说明/提示
In the first test case, the inhabitants of Middle-earth can form 3 squads. Since x=0 , the army's strength will not decrease due to the number of squads. The inhabitants can be distributed among the squads as follows:
- The single representative of the first species can be sent to the first squad.
- The first representative of the second species can be sent to the first squad, the second representative of the second species can be sent to the second squad. Then the total strength of the army will increase by b=1 .
- The first representative of the third species can be sent to the first squad, the second representative of the third species can be sent to the second squad, the third representative of the third species can be sent to the third squad. Then the total strength of the army will increase by 3⋅b=3 , as they form three pairs in different squads.
Thus, the total strength of the army is 4 .
In the second test case, the inhabitants of Middle-earth can form 3 squads. Since x=10 , the army's strength will decrease by 20 . The inhabitants can be distributed among the squads as follows:
- The first representative of the first species can be sent to the first squad, the second representative of the first species can be sent to the second squad. Then the total strength of the army will increase by b=5 .
- The first and second representatives of the second species can be sent to the first squad, the third and fourth representatives of the second species can be sent to the second squad, the fifth representative of the third species can be sent to the third squad. Then the total strength of the army will increase by 8⋅b=40 .
- The first representative of the third species can be sent to the first squad, the second representative of the third species can be sent to the second squad, the third representative of the third species can be sent to the third squad. Then the total strength of the army will increase by 3⋅b=15 , as they form three pairs in different squads.
Thus, the total strength of the army is 5+40+15−20=40 .