//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 0xccccccc; const ll LINF = 922337203685477580LL; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} const int N = 1e5+10; //head int n, d, k; deque

dq; int ma; P fb; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n >> d >> k; rep(i, n) { int x; cin >> x; if(!dq.empty() and dq.front().first < i-d) dq.pop_front(); if(!dq.empty() and chmax(ma, x-dq.front().second)) { fb = P(dq.front().first, i); } while(!dq.empty() and dq.back().second > x) dq.pop_back(); dq.emplace_back(i, x); } if(!ma) { cout << 0 << endl; } else { cout << (ll)ma*k << endl; cout << fb << endl; } }