CF1114B.Yet Another Array Partitioning Task

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

An array bb is called to be a subarray of aa if it forms a continuous subsequence of aa , that is, if it is equal to ala_l , al+1a_{l + 1} , \ldots , ara_r for some l,rl, r .

Suppose mm is some known constant. For any array, having mm or more elements, let's define it's beauty as the sum of mm largest elements of that array. For example:

  • For array x=[4,3,1,5,2]x = [4, 3, 1, 5, 2] and m=3m = 3 , the 33 largest elements of xx are 55 , 44 and 33 , so the beauty of xx is 5+4+3=125 + 4 + 3 = 12 .
  • For array x=[10,10,10]x = [10, 10, 10] and m=2m = 2 , the beauty of xx is 10+10=2010 + 10 = 20 .

You are given an array a1,a2,,ana_1, a_2, \ldots, a_n , the value of the said constant mm and an integer kk . Your need to split the array aa into exactly kk subarrays such that:

  • Each element from aa belongs to exactly one subarray.
  • Each subarray has at least mm elements.
  • The sum of all beauties of kk subarrays is maximum possible.

输入格式

The first line contains three integers nn , mm and kk ( 2n21052 \le n \le 2 \cdot 10^5 , 1m1 \le m , 2k2 \le k , mknm \cdot k \le n ) — the number of elements in aa , the constant mm in the definition of beauty and the number of subarrays to split to.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 109ai109-10^9 \le a_i \le 10^9 ).

输出格式

In the first line, print the maximum possible sum of the beauties of the subarrays in the optimal partition.

In the second line, print k1k-1 integers p1,p2,,pk1p_1, p_2, \ldots, p_{k-1} ( 1p1<p2<<pk1<n1 \le p_1 < p_2 < \ldots < p_{k-1} < n ) representing the partition of the array, in which:

  • All elements with indices from 11 to p1p_1 belong to the first subarray.
  • All elements with indices from p1+1p_1 + 1 to p2p_2 belong to the second subarray.
  • \ldots .
  • All elements with indices from pk1+1p_{k-1} + 1 to nn belong to the last, kk -th subarray.

If there are several optimal partitions, print any of them.

输入输出样例

  • 输入#1

    9 2 3
    5 2 5 2 4 1 1 3 2
    

    输出#1

    21
    3 5 
  • 输入#2

    6 1 4
    4 1 3 2 2 3
    

    输出#2

    12
    1 3 5 
  • 输入#3

    2 1 2
    -1000000000 1000000000
    

    输出#3

    0
    1 

说明/提示

In the first example, one of the optimal partitions is [5,2,5][5, 2, 5] , [2,4][2, 4] , [1,1,3,2][1, 1, 3, 2] .

  • The beauty of the subarray [5,2,5][5, 2, 5] is 5+5=105 + 5 = 10 .
  • The beauty of the subarray [2,4][2, 4] is 2+4=62 + 4 = 6 .
  • The beauty of the subarray [1,1,3,2][1, 1, 3, 2] is 3+2=53 + 2 = 5 .

The sum of their beauties is 10+6+5=2110 + 6 + 5 = 21 .

In the second example, one optimal partition is [4][4] , [1,3][1, 3] , [2,2][2, 2] , [3][3] .

首页