CF161B.Discounts

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

One day Polycarpus stopped by a supermarket on his way home. It turns out that the supermarket is having a special offer for stools. The offer is as follows: if a customer's shopping cart contains at least one stool, the customer gets a 5050% discount on the cheapest item in the cart (that is, it becomes two times cheaper). If there are several items with the same minimum price, the discount is available for only one of them!

Polycarpus has kk carts, and he wants to buy up all stools and pencils from the supermarket. Help him distribute the stools and the pencils among the shopping carts, so that the items' total price (including the discounts) is the least possible.

Polycarpus must use all kk carts to purchase the items, no shopping cart can remain empty. Each shopping cart can contain an arbitrary number of stools and/or pencils.

输入格式

The first input line contains two integers nn and kk ( 1<=k<=n<=1031<=k<=n<=10^{3} ) — the number of items in the supermarket and the number of carts, correspondingly. Next nn lines describe the items as " cic_{i} tit_{i} " (without the quotes), where cic_{i} ( 1<=ci<=1091<=c_{i}<=10^{9} ) is an integer denoting the price of the ii -th item, tit_{i} ( 1<=ti<=21<=t_{i}<=2 ) is an integer representing the type of item ii ( 11 for a stool and 22 for a pencil). The numbers in the lines are separated by single spaces.

输出格式

In the first line print a single real number with exactly one decimal place — the minimum total price of the items, including the discounts.

In the following kk lines print the descriptions of the items in the carts. In the ii -th line print the description of the ii -th cart as " tt b1b_{1} b2b_{2} ...... btb_{t} " (without the quotes), where tt is the number of items in the ii -th cart, and the sequence b1,b2,...,btb_{1},b_{2},...,b_{t} ( 1<=bj<=n1<=b_{j}<=n ) gives the indices of items to put in this cart in the optimal distribution. All indices of items in all carts should be pairwise different, each item must belong to exactly one cart. You can print the items in carts and the carts themselves in any order. The items are numbered from 11 to nn in the order in which they are specified in the input.

If there are multiple optimal distributions, you are allowed to print any of them.

输入输出样例

  • 输入#1

    3 2
    2 1
    3 2
    3 1
    

    输出#1

    5.5
    2 1 2
    1 3
    
  • 输入#2

    4 3
    4 1
    1 2
    2 2
    3 2
    

    输出#2

    8.0
    1 1
    2 4 2
    1 3
    

说明/提示

In the first sample case the first cart should contain the 1st and 2nd items, and the second cart should contain the 3rd item. This way each cart has a stool and each cart has a 5050% discount for the cheapest item. The total price of all items will be: 20.5+(3+30.5)=1+4.5=5.52·0.5+(3+3·0.5)=1+4.5=5.5 .

首页