CF1196B.Odd Sum Segments

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an array aa consisting of nn integers a1,a2,,ana_1, a_2, \dots, a_n . You want to split it into exactly kk non-empty non-intersecting subsegments such that each subsegment has odd sum (i. e. for each subsegment, the sum of all elements that belong to this subsegment is odd). It is impossible to rearrange (shuffle) the elements of a given array. Each of the nn elements of the array aa must belong to exactly one of the kk subsegments.

Let's see some examples of dividing the array of length 55 into 33 subsegments (not necessarily with odd sums): [1,2,3,4,5][1, 2, 3, 4, 5] is the initial array, then all possible ways to divide it into 33 non-empty non-intersecting subsegments are described below:

  • [1],[2],[3,4,5][1], [2], [3, 4, 5] ;
  • [1],[2,3],[4,5][1], [2, 3], [4, 5] ;
  • [1],[2,3,4],[5][1], [2, 3, 4], [5] ;
  • [1,2],[3],[4,5][1, 2], [3], [4, 5] ;
  • [1,2],[3,4],[5][1, 2], [3, 4], [5] ;
  • [1,2,3],[4],[5][1, 2, 3], [4], [5] .

Of course, it can be impossible to divide the initial array into exactly kk subsegments in such a way that each of them will have odd sum of elements. In this case print "NO". Otherwise, print "YES" and any possible division of the array. See the output format for the detailed explanation.

You have to answer qq independent queries.

输入格式

The first line contains one integer qq ( 1q21051 \le q \le 2 \cdot 10^5 ) — the number of queries. Then qq queries follow.

The first line of the query contains two integers nn and kk ( 1kn21051 \le k \le n \le 2 \cdot 10^5 ) — the number of elements in the array and the number of subsegments, respectively.

The second line of the query contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ), where aia_i is the ii -th element of aa .

It is guaranteed that the sum of nn over all queries does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 ).

输出格式

For each query, print the answer to it. If it is impossible to divide the initial array into exactly kk subsegments in such a way that each of them will have odd sum of elements, print "NO" in the first line. Otherwise, print "YES" in the first line and any possible division of the array in the second line. The division can be represented as kk integers r1r_1 , r2r_2 , ..., rkr_k such that 1r1<r2<<rk=n1 \le r_1 < r_2 < \dots < r_k = n , where rjr_j is the right border of the jj -th segment (the index of the last element that belongs to the jj -th segment), so the array is divided into subsegments [1;r1],[r1+1;r2],[r2+1,r3],,[rk1+1,n][1; r_1], [r_1 + 1; r_2], [r_2 + 1, r_3], \dots, [r_{k - 1} + 1, n] . Note that rkr_k is always nn but you should print it anyway.

输入输出样例

  • 输入#1

    3
    5 3
    7 18 3 14 1
    5 4
    1 2 3 4 5
    6 2
    1 2 8 4 10 2
    

    输出#1

    YES
    1 3 5
    NO
    NO
    
首页