-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC.cpp
44 lines (41 loc) · 972 Bytes
/
C.cpp
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
38
39
40
41
42
43
44
#include <bits/stdc++.h>
#define fi first
#define se second
#define DB double
#define U unsigned
#define P std::pair
#define LL long long
#define LD long double
#define pb push_back
#define MP std::make_pair
#define SZ(x) ((int)x.size())
#define all(x) x.begin(),x.end()
#define CLR(i,a) memset(i,a,sizeof(i))
#define FOR(i,a,b) for(int i = a;i <= b;++i)
#define ROF(i,a,b) for(int i = a;i >= b;--i)
#define DEBUG(x) std::cerr << #x << '=' << x << std::endl
const int MAXN = 3e5 + 5;
int n;
std::map<int,int> S;
int main(){
scanf("%d",&n);
std::vector<P<int,int> > ans;
int las = 1;
FOR(i,1,n){
int x;scanf("%d",&x);
S[x]++;
if(S[x] == 2){
S.clear();
ans.pb(MP(las,i));
las = i+1;
}
}
if(ans.empty()){
puts("-1");
return 0;
}
if(las != n+1) ans.back().se = n;
printf("%d\n",SZ(ans));
for(auto x:ans) printf("%d %d\n",x.fi,x.se);
return 0;
}