#include using namespace std; using lint = long long; using pint = pair; using plint = pair; struct fast_ios { fast_ios(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_; #define ALL(x) (x).begin(), (x).end() #define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i=i##_begin_;i--) #define REP(i, n) FOR(i,0,n) #define IREP(i, n) IFOR(i,0,n) template void ndarray(vector &vec, int len) { vec.resize(len); } template void ndarray(vector &vec, int len, Args... args) { vec.resize(len); for (auto &v : vec) ndarray(v, args...); } template void ndfill(V &x, const T &val) { x = val; } template void ndfill(vector &vec, const T &val) { for (auto &v : vec) ndfill(v, val); } template bool chmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; } template bool chmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; } template pair operator+(const pair &l, const pair &r) { return make_pair(l.first + r.first, l.second + r.second); } template pair operator-(const pair &l, const pair &r) { return make_pair(l.first - r.first, l.second - r.second); } template vector srtunq(vector vec) { sort(vec.begin(), vec.end()), vec.erase(unique(vec.begin(), vec.end()), vec.end()); return vec; } template istream &operator>>(istream &is, vector &vec) { for (auto &v : vec) is >> v; return is; } template ostream &operator<<(ostream &os, const vector &vec) { os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; } template ostream &operator<<(ostream &os, const deque &vec) { os << "deq["; for (auto v : vec) os << v << ","; os << "]"; return os; } template ostream &operator<<(ostream &os, const set &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const unordered_set &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const multiset &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const unordered_multiset &vec) { os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const pair &pa) { os << "(" << pa.first << "," << pa.second << ")"; return os; } template ostream &operator<<(ostream &os, const map &mp) { os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; } template ostream &operator<<(ostream &os, const unordered_map &mp) { os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; } #define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl; int main() { int N, K, M; cin >> N >> K >> M; vector A(N), B(N + 1); cin >> A; REP(i, N) B[i + 1] = B[i] + A[i]; vector> VH(K + 1), VL(K + 1); constexpr lint INF = 1e18; REP(k, K + 1) { VH[k].emplace_back(B[N], 0); VL[k].emplace_back(-B[N], 0); }; REP(i, N) { IREP(k, K) { while (VH[k].size() and VH[k].front().second < i + 1 - M) VH[k].pop_front(); while (VL[k].size() and VL[k].front().second < i + 1 - M) VL[k].pop_front(); lint q = -INF; if (VH[k].size()) chmax(q, VH[k].front().first - (B[N] - B[i + 1])); if (VL[k].size()) chmax(q, VL[k].front().first + (B[N] - B[i + 1])); lint tmp = q + B[N] - B[i + 1]; while (VH[k + 1].size() and VH[k + 1].back().first < tmp) VH[k + 1].pop_back(); VH[k + 1].emplace_back(tmp, i + 1); tmp = q - B[N] + B[i + 1]; while (VL[k + 1].size() and VL[k + 1].back().first < tmp) VL[k + 1].pop_back(); VL[k + 1].emplace_back(tmp, i + 1); } } cout << VH[K].back().first << '\n'; }