1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include<bits/stdc++.h>
#define fi first
#define se second
using namespace std;
const int N=3e5;
int tab[N+10];
long long p[N+10];
long long dp[N+10];
long long solve(int n,int k)
{
	int l,r;
	cin>>l>>r;
	dp[l-1]=0;
	for(int i=l;i<=r;i++)
	{
		dp[i]=dp[i-1];
		if(i-k+1>=l)
			dp[i]=max(dp[i],dp[i-k]+p[i]-p[i-k]);
	}
	return dp[r];
}
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	int n,k,q;
	cin>>n>>k>>q;
	for(int i=1;i<=n;i++)
	{
		cin>>tab[i];
		p[i]=p[i-1]+tab[i];
	}
	while(q--)
		cout<<solve(n,k)<<"\n";
	return 0;
}