Codeforces 1324E. Sleeping Schedule(DP)

Description

Vova had a pretty weird sleeping schedule. There are h hours in a day. Vova will sleep exactly n times. The i-th time he will sleep exactly after ai hours from the time he woke up. You can assume that Vova woke up exactly at the beginning of this story (the initial time is 0). Each time Vova sleeps exactly one day (in other words, h hours).

Vova thinks that the i-th sleeping time is good if he starts to sleep between hours l and r inclusive.

Vova can control himself and before the i-th time can choose between two options: go to sleep after ai hours or after ai−1 hours.

Your task is to say the maximum number of good sleeping times Vova can obtain if he acts optimally.

Input

The first line of the input contains four integers n,h,l and r (1≤n≤2000,3≤h≤2000,0≤l≤r<h) — the number of times Vova goes to sleep, the number of hours in a day and the segment of the good sleeping time.

The second line of the input contains n integers a1,a2,…,an (1≤ai<h), where ai is the number of hours after which Vova goes to sleep the i-th time.

Output

Print one integer — the maximum number of good sleeping times Vova can obtain if he acts optimally.

Example
input

7 24 21 23
16 17 14 20 20 11 22

output

3

Note

The maximum number of good times in the example is 3.

The story starts from t=0. Then Vova goes to sleep after a1−1 hours, now the time is 15. This time is not good. Then Vova goes to sleep after a2−1 hours, now the time is 15+16=7. This time is also not good. Then Vova goes to sleep after a3 hours, now the time is 7+14=21. This time is good. Then Vova goes to sleep after a4−1 hours, now the time is 21+19=16. This time is not good. Then Vova goes to sleep after a5 hours, now the time is 16+20=12. This time is not good. Then Vova goes to sleep after a6 hours, now the time is 12+11=23. This time is good. Then Vova goes to sleep after a7 hours, now the time is 23+22=21. This time is also good.

题目大意

Vova会睡觉n次,每次它可以选择睡a[i]或a[i]-1个小时,每天有h个小时,如果Vova在区间l到r睡觉Vova会感觉很好(最佳的睡眠时间)
输出最大的Vova感觉很好的次数

思路

数据不大考虑状态转移
dp[i][j]表示Vova第i次睡觉在第j小时醒来的最大次数
具体转移思路看代码吧…

#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int inf=0x3f3f3f3f;
const int maxn=2e5+5;
int a[2005],dp[2005][2005];
int main()
{
	int n,h,l,r;
	scanf("%d %d %d %d",&n,&h,&l,&r);
	for(int i=1;i<=n;++i)scanf("%d",&a[i]);
	memset(dp,-inf,sizeof(dp));
	dp[0][0]=0;
	for(int i=1;i<=n;++i){
		for(int j=0;j<h;++j){
			if((j+a[i])%h>=l&&(j+a[i])%h<=r){
				dp[i][(j+a[i])%h]=max(dp[i][(j+a[i])%h],dp[i-1][j]+1);
			}else{
				dp[i][(j+a[i])%h]=max(dp[i][(j+a[i])%h],dp[i-1][j]);
			}
			if((j+a[i]-1)%h>=l&&(j+a[i]-1)%h<=r){
				dp[i][(j+a[i]-1)%h]=max(dp[i][(j+a[i]-1)%h],dp[i-1][j]+1);
			}else{
				dp[i][(j+a[i]-1)%h]=max(dp[i][(j+a[i]-1)%h],dp[i-1][j]);
			}
		}
	}
	int ans=0;
	for(int i=0;i<h;++i){
		ans=max(ans,dp[n][i]);
	}
	printf("%d\n",ans);
	return 0;
}
发布了157 篇原创文章 · 获赞 56 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_43984169/article/details/105603323