CF1516C.Baby Ehab Partitions Again

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Baby Ehab was toying around with arrays. He has an array aa of length nn . He defines an array to be good if there's no way to partition it into 22 subsequences such that the sum of the elements in the first is equal to the sum of the elements in the second. Now he wants to remove the minimum number of elements in aa so that it becomes a good array. Can you help him?

A sequence bb is a subsequence of an array aa if bb can be obtained from aa by deleting some (possibly zero or all) elements. A partitioning of an array is a way to divide it into 22 subsequences such that every element belongs to exactly one subsequence, so you must use all the elements, and you can't share any elements.

输入格式

The first line contains an integer nn ( 2n1002 \le n \le 100 ) — the length of the array aa .

The second line contains nn integers a1a_1 , a2a_2 , \ldots , ana_{n} ( 1ai20001 \le a_i \le 2000 ) — the elements of the array aa .

输出格式

The first line should contain the minimum number of elements you need to remove.

The second line should contain the indices of the elements you're removing, separated by spaces.

We can show that an answer always exists. If there are multiple solutions, you can print any.

输入输出样例

  • 输入#1

    4
    6 3 9 12

    输出#1

    1
    2
  • 输入#2

    2
    1 2

    输出#2

    0

说明/提示

In the first example, you can partition the array into [6,9][6,9] and [3,12][3,12] , so you must remove at least 11 element. Removing 33 is sufficient.

In the second example, the array is already good, so you don't need to remove any elements.

首页