CF286-C

 

C. Mr. Kitayuta, the Treasure Hunter
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

 

The Shuseki Islands are an archipelago of 30001 small islands in the Yutampo Sea. The islands are evenly spaced along a line, numbered from 0 to 30000 from the west to the east. These islands are known to contain many treasures. There are n gems in the Shuseki Islands in total, and the i-th gem is located on island pi.

Mr. Kitayuta has just arrived at island 0. With his great jumping ability, he will repeatedly perform jumps between islands to the east according to the following process:

  • First, he will jump from island 0 to island d.
  • After that, he will continue jumping according to the following rule. Let l be the length of the previous jump, that is, if his previous jump was from island prev to island cur, let l = cur - prev. He will perform a jump of length l - 1, l or l + 1 to the east. That is, he will jump to island (cur + l - 1), (cur + l) or (cur + l + 1) (if they exist). The length of a jump must be positive, that is, he cannot perform a jump of length 0 when l = 1. If there is no valid destination, he will stop jumping.

Mr. Kitayuta will collect the gems on the islands visited during the process. Find the maximum number of gems that he can collect.

 

Input

The first line of the input contains two space-separated integers n and d (1 ≤ n, d ≤ 30000), denoting the number of the gems in the Shuseki Islands and the length of the Mr. Kitayuta's first jump, respectively.

The next n lines describe the location of the gems. The i-th of them (1 ≤ i ≤ n) contains a integer pi (d ≤ p1 ≤ p2 ≤ ... ≤ pn ≤ 30000), denoting the number of the island that contains the i-th gem.

 

Output

Print the maximum number of gems that Mr. Kitayuta can collect.

 

Sample test(s)
input
4 10
10
21
27
27
output
3
input
8 8
9
19
28
36
45
55
66
78
output
6
input
13 7
8
8
9
16
17
17
18
21
23
24
24
26
30
output
4

 

Note

In the first sample, the optimal route is 0  →  10 (+1 gem)  →  19  →  27 (+2 gems)  → ...

In the second sample, the optimal route is 0  →  8  →  15  →  21 →  28 (+1 gem)  →  36 (+1 gem)  →  45 (+1 gem)  →  55 (+1 gem)  →  66 (+1 gem)  →  78 (+1 gem)  → ...

In the third sample, the optimal route is 0  →  7  →  13  →  18 (+1 gem)  →  24 (+2 gems)  →  30 (+1 gem)  → ...

 

状态转移方程 dp[pos][len]=max(dp[pos+len-1][len-1],dp[pos+len][len],dp[pos+len+1][len+1])+a[pos]

pos和len的范围都是1~30000故不可能开这么大的数组,故对于len>2000,由于状态数比较少,直接dfs就可以了

 

#include <iostream>
#include <string.h>
using namespace std;
int a[30010];
int n,d;
int Max=-1;
int dp[30010][2010];
int dfs(int l,int len)
{
    if(l>Max)
        return 0;
    int cnt;
    if(len>1)
    {

        cnt=max(max(dfs(l+len-1,len-1),dfs(l+len,len)),dfs(l+len+1,len+1))+a[l];
        cnt=max(cnt,a[l]);
    }
    return cnt;

}
int DP( int i , int l ) {
    if( i > Max ) return 0 ;
    if( dp[i][l] == -1 ) {
        int &tmp = dp[i][l] ; tmp = a[i];
        if( l > 1 ) tmp = max( tmp , a[i] + DP( i + l - 1 , l - 1 ) );
        tmp = max( tmp , a[i] + DP( i + l , l ) );
        tmp = max( tmp , a[i] + DP( i + l + 1 , l + 1 ) );
    }
    return dp[i][l];
}

int main()
{
    cin>>n>>d;
    memset( dp , -1 , sizeof dp ) ;
    for(int i=1;i<=n;i++)
    {
        int k;
        cin>>k;
        a[k]++;
        Max=max(Max,k);
    }
    if(d>2000)
        cout<<dfs(d,d)<<endl;
    else
        cout<<DP(d,d)<<endl;
    return 0;
}

 

转载于:https://www.cnblogs.com/wzsblogs/p/4290043.html

xjc-cf3600-c压力显示表是一种专门用于测量和显示系统内部压力的设备。该表具有以下特点和功能。 首先,xjc-cf3600-c压力显示表具有高精度和稳定性。它采用先进的传感技术和精密的测量装置,能够准确地测量系统内部的压力值,并且在长时间使用过程中保持稳定的工作状态。这使得该表能够提供可靠的压力数据,为系统运行提供准确的参考。 其次,xjc-cf3600-c压力显示表具有直观的显示界面。它采用大屏幕液晶显示屏,能够清晰地显示出当前的压力数值。同时,该表还提供灯光背光功能,使得在暗处或夜间也能清晰地读取显示结果。这样,操作人员可以方便地观察和记录压力情况。 此外,xjc-cf3600-c压力显示表还具有多种报警功能。它能够根据预设的上下限值,自动发出声音或灯光报警信号,提醒操作人员系统内部压力超过规定范围,以便及时采取措施。这种报警功能有效地保护系统的安全运行,防止因过高或过低的压力而导致的损坏或事故发生。 最后,xjc-cf3600-c压力显示表具有良好的耐用性和可靠性。它采用高品质的材料和工艺制作而成,具有较强的抗震、耐腐蚀和抗干扰能力。此外,该表还具有防水、防尘和防爆等特性,能够适应各种恶劣的工作环境。 总之,xjc-cf3600-c压力显示表是一种功能强大的压力测量和显示设备,具有高精度、直观的显示界面、多种报警功能以及良好的耐用性和可靠性。它可以广泛应用于各种工业领域,为系统运行提供准确的压力监测和控制。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值