AKOJ正在加载中...

3291: k-d-sequence

金币值:2 定数:1 时间限制:2.000 s 内存限制:256 M
正确:0 提交:0 正确率:0.00% 命题人:
点赞量:0 收藏量:0 题目类型:程序

题目描述

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

We'll call a sequence of integers a good k-d sequence if we can add to it at most k numbers in such a way that after the sorting the sequence will be an arithmetic progression with difference d.

You got hold of some sequence a, consisting of n integers. Your task is to find its longest contiguous subsegment, such that it is a good k-d sequence.

Input

The first line contains three space-separated integers n,k,d (1≤n≤2·105;0≤k≤2·105;0≤d≤109). The second line contains n space-separated integers: a1,a2,...,an (-109ai≤109)− the actual sequence.

Output

Print two space-separated integers l,r (1≤lrn) show that sequence al,al+1,...,ar is the longest subsegment that is a good k-d sequence.

If there are multiple optimal answers, print the one with the minimum value of l.

Examples
Input
6 1 2
4 3 2 8 6 2
Output
3 5
Note

In the first test sample the answer is the subsegment consisting of numbers 2, 8, 6− after adding number 4 and sorting it becomes sequence 2, 4, 6, 8− the arithmetic progression with difference 2.