B - Parity Alternated Deletions CodeForces - 1144B

Polycarp has an array a consisting of n

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 n−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.

Input

The first line of the input contains one integer n

(1≤n≤2000) — the number of elements of a

.

The second line of the input contains n
integers a1,a2,…,an (0≤ai≤106), where ai is the i-th element of a

.

Output

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

Examples
Input

5
1 5 7 8 2

Output

0

Input

6
5 1 2 4 6 3

Output

0

Input

2
1000000 1000000

Output

1000000

题意:交替删除偶数和奇数,求留下来的最小的数的和
思路:模拟

#include<iostream>
#include<algorithm>
using namespace std;
int N,sum=0;
int odd[2500];
int even[2500];
bool cmp(int a,int b){
    return a>b;
}
int main(){
    cin>>N;
    int number;
    int a=0,b=0;
    for(int i=0;i<N;i++){
        cin>>number;
        sum+=number;
        if(number%2==0){
            even[a++]=number;
        }else{
            odd[b++]=number;
        }
    }
    sort(even,even+a,cmp);
    sort(odd,odd+b,cmp);
    if(a>b){
        for(int i=0;i<b;i++){
            sum-=odd[i];
            sum-=even[i];
        }
        sum-=even[b];
    }else if(a<b){
        for(int i=0;i<a;i++){
            sum-=odd[i];
            sum-=even[i];
        }
        sum-=odd[a];
    }else{
        sum=0;
    }
    cout<<sum<<endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值