CF1144B.Parity Alternated Deletions

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp has an array aa consisting of nn integers.

He wants to play a game with this array. The game consists of several moves. On the first move he chooses any element and deletes it (after the first move the array contains n1n-1 elements). For each of the next moves he chooses any element with the only restriction: its parity should differ from the parity of the element deleted on the previous move. In other words, he alternates parities (even-odd-even-odd-... or odd-even-odd-even-...) of the removed elements. Polycarp stops if he can't make a move.

Formally:

  • If it is the first move, he chooses any element and deletes it;
  • If it is the second or any next move:
    • if the last deleted element was odd, Polycarp chooses any even element and deletes it;
    • if the last deleted element was even, Polycarp chooses any odd element and deletes it.
  • If after some move Polycarp cannot make a move, the game ends.

Polycarp's goal is to minimize the sum of non-deleted elements of the array after end of the game. If Polycarp can delete the whole array, then the sum of non-deleted elements is zero.

Help Polycarp find this value.

输入格式

The first line of the input contains one integer nn ( 1n20001 \le n \le 2000 ) — the number of elements of aa .

The second line of the input contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 0ai1060 \le a_i \le 10^6 ), where aia_i is the ii -th element of aa .

输出格式

Print one integer — the minimum possible sum of non-deleted elements of the array after end of the game.

输入输出样例

  • 输入#1

    5
    1 5 7 8 2
    

    输出#1

    0
    
  • 输入#2

    6
    5 1 2 4 6 3
    

    输出#2

    0
    
  • 输入#3

    2
    1000000 1000000
    

    输出#3

    1000000
    
首页