CF1379C.Choosing flowers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vladimir would like to prepare a present for his wife: they have an anniversary! He decided to buy her exactly n flowers.
Vladimir went to a flower shop, and he was amazed to see that there are m types of flowers being sold there, and there is unlimited supply of flowers of each type. Vladimir wants to choose flowers to maximize the happiness of his wife. He knows that after receiving the first flower of the i -th type happiness of his wife increases by ai and after receiving each consecutive flower of this type her happiness increases by bi . That is, if among the chosen flowers there are xi>0 flowers of type i , his wife gets ai+(xi−1)⋅bi additional happiness (and if there are no flowers of type i , she gets nothing for this particular type).
Please help Vladimir to choose exactly n flowers to maximize the total happiness of his wife.
输入格式
The first line contains the only integer t ( 1≤t≤10000 ), the number of test cases. It is followed by t descriptions of the test cases.
Each test case description starts with two integers n and m ( 1≤n≤109 , 1≤m≤100000 ), the number of flowers Vladimir needs to choose and the number of types of available flowers.
The following m lines describe the types of flowers: each line contains integers ai and bi ( 0≤ai,bi≤109 ) for i -th available type of flowers.
The test cases are separated by a blank line. It is guaranteed that the sum of values m among all test cases does not exceed 100000 .
输出格式
For each test case output a single integer: the maximum total happiness of Vladimir's wife after choosing exactly n flowers optimally.
输入输出样例
输入#1
2 4 3 5 0 1 4 2 2 5 3 5 2 4 2 3 1
输出#1
14 16
说明/提示
In the first example case Vladimir can pick 1 flower of the first type and 3 flowers of the second type, in this case the total happiness equals 5+(1+2⋅4)=14 .
In the second example Vladimir can pick 2 flowers of the first type, 2 flowers of the second type, and 1 flower of the third type, in this case the total happiness equals (5+1⋅2)+(4+1⋅2)+3=16 .