CF1354F.Summoning Minions
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp plays a computer game. In this game, the players summon armies of magical minions, which then fight each other.
Polycarp can summon n different minions. The initial power level of the i -th minion is ai , and when it is summoned, all previously summoned minions' power levels are increased by bi . The minions can be summoned in any order.
Unfortunately, Polycarp cannot have more than k minions under his control. To get rid of unwanted minions after summoning them, he may destroy them. Each minion can be summoned (and destroyed) only once.
Polycarp's goal is to summon the strongest possible army. Formally, he wants to maximize the sum of power levels of all minions under his control (those which are summoned and not destroyed).
Help Polycarp to make up a plan of actions to summon the strongest possible army!
输入格式
The first line contains one integer T ( 1≤T≤75 ) — the number of test cases.
Each test case begins with a line containing two integers n and k ( 1≤k≤n≤75 ) — the number of minions availible for summoning, and the maximum number of minions that can be controlled by Polycarp, respectively.
Then n lines follow, the i -th line contains 2 integers ai and bi ( 1≤ai≤105 , 0≤bi≤105 ) — the parameters of the i -th minion.
输出格式
For each test case print the optimal sequence of actions as follows:
Firstly, print m — the number of actions which Polycarp has to perform ( 0≤m≤2n ). Then print m integers o1 , o2 , ..., om , where oi denotes the i -th action as follows: if the i -th action is to summon the minion x , then oi=x , and if the i -th action is to destroy the minion x , then oi=−x . Each minion can be summoned at most once and cannot be destroyed before being summoned (and, obviously, cannot be destroyed more than once). The number of minions in Polycarp's army should be not greater than k after every action.
If there are multiple optimal sequences, print any of them.
输入输出样例
输入#1
3 5 2 5 3 7 0 5 0 4 0 10 0 2 1 10 100 50 10 5 5 1 5 2 4 3 3 4 2 5 1
输出#1
4 2 1 -1 5 1 2 5 5 4 3 2 1
说明/提示
Consider the example test.
In the first test case, Polycarp can summon the minion 2 with power level 7 , then summon the minion 1 , which will increase the power level of the previous minion by 3 , then destroy the minion 1 , and finally, summon the minion 5 . After this, Polycarp will have two minions with power levels of 10 .
In the second test case, Polycarp can control only one minion, so he should choose the strongest of them and summon it.
In the third test case, Polycarp is able to summon and control all five minions.