B. Cutting Codeforces Round #493 (Div. 2)

B. Cutting
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There are a lot of things which could be cut — trees, paper, "the rope". In this problem you are going to cut a sequence of integers.

There is a sequence of integers, which contains the equal number of even and odd numbers. Given a limited budget, you need to make maximum possible number of cuts such that each resulting segment will have the same number of odd and even integers.

Cuts separate a sequence to continuous (contiguous) segments. You may think about each cut as a break between two adjacent elements in a sequence. So after cutting each element belongs to exactly one segment. Say, [4,1,2,3,4,5,4,4,5,5][4,1,2,3,4,5,4,4,5,5]  two cuts  [4,1|2,3,4,5|4,4,5,5][4,1|2,3,4,5|4,4,5,5]. On each segment the number of even elements should be equal to the number of odd elements.

The cost of the cut between xx and yy numbers is |xy||x−y| bitcoins. Find the maximum possible number of cuts that can be made while spending no more than BB bitcoins.

Input

First line of the input contains an integer nn (2n1002≤n≤100) and an integer BB (1B1001≤B≤100) — the number of elements in the sequence and the number of bitcoins you have.

Second line contains nn integers: a1a1a2a2, ..., anan (1ai1001≤ai≤100) — elements of the sequence, which contains the equal number of even and odd numbers

Output

Print the maximum possible number of cuts which can be made while spending no more than BB bitcoins.

Examples
input
Copy
6 4
1 2 5 10 15 20
output
Copy
1
input
Copy
4 10
1 3 2 4
output
Copy
0
input
Copy
6 100
1 2 3 4 5 6
output
Copy
2
Note

In the first sample the optimal answer is to split sequence between 22 and 55. Price of this cut is equal to 33 bitcoins.

In the second sample it is not possible to make even one cut even with unlimited number of bitcoins.

In the third sample the sequence should be cut between 22 and 33, and between 44 and 55. The total price of the cuts is 1+1=21+1=2

 bitcoins

题意:将一组奇偶数数量相同的数cut一下,使每部分的奇偶数数量相同,每次cut都需要花费| a[i]-a[i-1] |的bitcoin,求花费不超过B的bition时,最大的cut数。

题解:遍历一遍,记录所有可以cut的地方要花费的bition,我是记录在b【】数组中,注意取绝对值,然后用贪心的思想,排序,从小到大取。

代码:如果觉得题解可以欢迎关注评论,如果觉得不好,也欢迎评论提意见,我会加以改进的

#include <bits/stdc++.h>
using namespace std;
int n;
int a[110],b[110];
int o[110],e[110];
int bt;
int main()
{
	cin>>n>>bt;
	int num=0;
	for(int i=0;i<n;i++)
	{
		
		cin>>a[i];
		if(i!=0&&e[i-1]==o[i-1])
		{
			//cout<<a[i]<<" "<<a[i-1]<<endl;
			b[num++]=abs(a[i]-a[i-1]);
		}
		if(a[i]%2==0)
		{
			if(i==0)
				e[i]=1;
			else
			{
				e[i]=e[i-1]+1;
				o[i]=o[i-1];
			}
		}
		
		else
		{
			if(i==0)
				o[i]=1;
			else
			{
				o[i]=o[i-1]+1;
				e[i]=e[i-1];
			}
		}
	}
	sort(b,b+num);
	int sum=0;
	int t=0;
	for(int i=0;i<num;i++)
	{
		sum+=b[i];
		if(sum<=bt)
			t++;
		else
			break;
	}
	cout<<t<<endl;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值