Little Red Riding Hood

来源:互联网 发布:53端口 转发 编辑:程序博客网 时间:2024/06/14 08:39

题目描述
Once upon a time, there was a little girl. Her name was Little Red Riding Hood. One day, her grandma was ill. Little Red Riding Hood went to visit her. On the way, she met a big wolf. “That’s a good idea.”,the big wolf thought. And he said to the Little Red Riding Hood, “Little Red Riding Hood, the flowers are so beautiful. Why not pick some to your grandma?” “Why didn’t I think of that? Thank you.” Little Red Riding Hood said.

Then Little Red Riding Hood went to the grove to pick flowers. There were n flowers, each flower had a beauty degree a[i]. These flowers arrayed one by one in a row. The magic was that after Little Red Riding Hood pick a flower, the flowers which were exactly or less than d distances to it are quickly wither and fall, in other words, the beauty degrees of those flowers changed to zero. Little Red Riding Hood was very smart, and soon she took the most beautiful flowers to her grandma’s house, although she didn’t know the big wolf was waiting for her. Do you know the sum of beauty degrees of those flowers which Little Red Riding Hood pick?

输入描述
The first line input a positive integer T (1≤T≤100), indicates the number of test cases. Next, each test case occupies two lines. The first line of them input two positive integer n and

k (2 <= n <= 10^5 ) ,1 <= k <= n ), the second line of them input n positive integers a (1<=a <=10^5)

输出描述
Each group of outputs occupies one line and there are one number indicates the sum of the largest beauty degrees of flowers Little Red Riding Hood can pick.

输入样例
1
3 1
2 1 3
输出样例
5


简单的动态规划

#include"iostream"#include"string.h"using namespace std;int ai[100100];int dp[100100];int main(){    int t,n,k;    cin>>t;    while(t--)    {        cin>>n>>k;        for(int i=1;i<=n;i++)        {            cin>>ai[i];        }        for(int i=1;i<=n;i++)        {            dp[i]=dp[i-1];            if(i<=k+1) dp[i]=max(dp[i],ai[i]);                        else dp[i]=max(dp[i],dp[i-k-1]+ai[i]);               }        cout<<dp[n]<<endl;    }    return 0;}
0 0
原创粉丝点击