CF224B.Array

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You've got an array aa , consisting of nn integers: a1,a2,...,ana_{1},a_{2},...,a_{n} . Your task is to find a minimal by inclusion segment [l,r][l,r] (1<=l<=r<=n)(1<=l<=r<=n) such, that among numbers al, al+1, ..., ara_{l}, a_{l+1}, ..., a_{r} there are exactly kk distinct numbers.

Segment [l,r][l,r] ( 1<=l<=r<=n;1<=l<=r<=n; l,rl,r are integers) of length m=rl+1m=r-l+1 , satisfying the given property, is called minimal by inclusion, if there is no segment [x,y][x,y] satisfying the property and less then mm in length, such that 1<=l<=x<=y<=r<=n1<=l<=x<=y<=r<=n . Note that the segment [l,r][l,r] doesn't have to be minimal in length among all segments, satisfying the given property.

输入格式

The first line contains two space-separated integers: nn and kk ( 1<=n,k<=1051<=n,k<=10^{5} ). The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} — elements of the array aa ( 1<=ai<=1051<=a_{i}<=10^{5} ).

输出格式

Print a space-separated pair of integers ll and rr ( 1<=l<=r<=n1<=l<=r<=n ) such, that the segment [l,r][l,r] is the answer to the problem. If the sought segment does not exist, print "-1 -1" without the quotes. If there are multiple correct answers, print any of them.

输入输出样例

  • 输入#1

    4 2
    1 2 2 3
    

    输出#1

    1 2
    
  • 输入#2

    8 3
    1 1 2 2 3 3 4 5
    

    输出#2

    2 5
    
  • 输入#3

    7 4
    4 7 7 4 7 4 7
    

    输出#3

    -1 -1
    

说明/提示

In the first sample among numbers a1a_{1} and a2a_{2} there are exactly two distinct numbers.

In the second sample segment [2,5][2,5] is a minimal by inclusion segment with three distinct numbers, but it is not minimal in length among such segments.

In the third sample there is no segment with four distinct numbers.

首页