the question is
CALVIN’S GAME
Calvin wakes up early one morning and finds that all his friends in the hostel are asleep. To amuse himself, he decides to play the following game : he draws a sequence of N squares on the ground, numbered 1 to N, and writes an integer in each square. He starts at square k (1 ≤ k ≤ N). The game consists of one forward phase followed by one backward phase.
:- In the forward phase, Calvin makes zero or more moves of the following type : if his current position is p, he can jump to p+1 or p+2 as long as he stays within the N squares.
:- In the backward phase, Calvin makes zero or more moves of the following type : if his current position is p, he can jump to p−1 or p−2 as long as he stays within the N squares.
He plays such that he finally ends up at square 1, and then he stops. He starts with a score of 0, and each time he jumps from square i to square j, he adds the integer written in square j to his score. Find the maximum score Calvin can obtain by playing this game. Recall that Calvin must start at square k and end at square 1. The integer on the square where he starts is not included in his score.
For example, suppose N = 5 and the numbers in squares are 5, 3, −2, 1, 1. If k = 2, Calvin starts on the second square. He can make a forward move to square 4, another to square 5, a backward move to square 4, another to square 2, and another to square 1. His total score is 1+1+1+3+5 = 11. You can check that this is the maximum score possible.
Input Format:
• Line 1 : Two space-separated integers, N and k, with 1 ≤ k ≤ N. • Line 2 : A space-separated sequence of N integers, the numbers in squares 1, 2 . . . , N .
Constraints:
1 ≤ N ≤ 2*10^5 -1000 <= Ai <= 1000
Output Format
A single line with a single integer, the maximum score Calvin can obtain by playing the game.
Sample Input
5 2
5 3 -2 1 1
Sample Output
11
soln is : #include
#include<bits/stdc++.h>
#include
#define ll long long int
using namespace std;
ll dpf[200005]={};
ll arr[200005]={};
int main(){
memset(dpf,0,sizeof(dpf));
///inputting k and n :))
ll n,k;
cin>>n>>k;
///input the data in the array…
for(ll i=1;i<=n;i++) cin>>arr[i];
///forward phase
dpf[k]=0;
pair<ll,ll> p;
p.first=0;
p.second=k;
for(ll i=k+1;i<=n;i++){
if(i-1>=k&&i-2>=k)
dpf[i]=max(arr[i]+dpf[i-1],arr[i]+dpf[i-2]);
else if(i-1>=k) dpf[i]=arr[i]+dpf[i-1];
if(p.first<dpf[i]){
p.first=dpf[i];
p.second=i;
}
}
///backward phase
///can you define it i have to start from p.second with a score of p.first and go to 1 th position
memset(dpf,0,sizeof(dpf));
dpf[p.second]=p.first;
for(ll i=p.second-1;i>=1;i–){
if(i+1<=p.second&&i+2<=p.second){
dpf[i]=max(arr[i]+dpf[i+1],arr[i]+dpf[i+2]);
}
else if(i+1<=p.second) dpf[i]=dpf[i+1]+arr[i];
}
cout<<dpf[1]<<endl;
}