C. Pearls in a Row
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

There are n pearls in a row. Let's enumerate them with integers from 1 to n from the left to the right. The pearl number i has the type ai.

Let's call a sequence of consecutive pearls a segment. Let's call a segment good if it contains two pearls of the same type.

Split the row of the pearls to the maximal number of good segments. Note that each pearl should appear in exactly one segment of the partition.

As input/output can reach huge size it is recommended to use fast input/output methods: for example, prefer to use scanf/printfinstead of cin/cout in C++, prefer to use BufferedReader/PrintWriter instead of Scanner/System.out in Java.

Input

The first line contains integer n (1 ≤ n ≤ 3·105) — the number of pearls in a row.

The second line contains n integers ai (1 ≤ ai ≤ 109) – the type of the i-th pearl.

Output

On the first line print integer k — the maximal number of segments in a partition of the row.

Each of the next k lines should contain two integers lj, rj (1 ≤ lj ≤ rj ≤ n) — the number of the leftmost and the rightmost pearls in the j-th segment.

Note you should print the correct partition of the row of the pearls, so each pearl should be in exactly one segment and all segments should contain two pearls of the same type.

If there are several optimal solutions print any of them. You can print the segments in any order.

If there are no correct partitions of the row print the number "-1".

Sample test(s)
input
5
1 2 3 4 1
output
1
1 5
input
5
1 2 3 4 5
output
-1
input
7
1 2 1 3 1 2 1
output
2
1 3
4 7

题意:给你一串数字,要你分段,要求每个段中至少有两个相同的数字,要你求最多能分多少段。
思路:贪心,从前面开始循环将出现的数字记录,然后遇到相同的就跳出,这就是一段,然后将前面记录的数字清空,重复前面的操作
这样符合最优原则,遇到有两个了相同的就分为一段。要注意最后一段。
 1 #include<stdio.h>
2 #include<algorithm>
3 #include<iostream>
4 #include<string.h>
5 #include<cstdio>
6 #include<climits>
7 #include<math.h>
8 #include<queue>
9 #include<string.h>
10 #include<stack>
11 #include<vector>
12 #include<map>
13 #include<ext/hash_map>
14 #define sc(x) scanf("%I64d",&x)
15 #define pr(x) printf("%I64d",x);
16 #define prr(x) printf("%I64d\n",x);
17 #define prrr(x) printf(" %I64d",x);
18 #define FOR(i,p,q) for(int i=p;i<=q;i++)
19 int cmp(const void*p,const void*q);
20 using namespace std;
21 typedef long long ll;
22 typedef struct pp
23 {
24 int x;
25 int y;
26 int flag;
27 } ss;
28 ss bb[3*100005];
29 ss aa[6*100005];
30 ss dd[3*100005];
31 map<int,int>my;//用map记录是否前面出现了某个数字
32 ss rk[3*100005];
33 int main(void)
34 {
35 int n,i,j,k,p,q;
36 while(scanf("%d",&k)!=EOF)
37 {my.clear();
38 for(i=0; i<k; i++)
39 {
40 scanf("%d",&bb[i].x);
41 bb[i].x;
42 bb[i].y=i;
43 }
44 qsort(bb,k,sizeof(ss),cmp);//这里的离散化可以不需要,直接映射就可以了。
45 int cnt=0;
46 dd[bb[0].y].x=cnt;
47 dd[bb[0].y].y=bb[0].y;
48 for(i=1; i<k; i++)
49 {
50 if(bb[i].x!=bb[i-1].x)
51 {
52 cnt++;
53 }
54 dd[bb[i].y].x=cnt;
55 dd[bb[i].y].y=bb[i].y;
56 }
57 int fr=0;
58 int sum=0;
59 for(i=0; i<k; i++)
60 {
61 if(my[dd[i].x]==0)
62 {
63 my[dd[i].x]=1;
64 }
65 else if(my[dd[i].x])
66 {
67 sum++;
68 rk[sum].x=fr;
69 rk[sum].y=i;
70 fr=i+1;
71 my.clear();//有一段后清空映射,因为段不能相交
72 }
73 }
74 if(sum==0)
75 {
76 printf("-1\n");
77 }
78 else
79 {if(rk[sum].y!=k-1)//最后一段要特别注意,如果没到端尾,要到端尾
80 {
81 rk[sum].y=k-1;
82 }
83 printf("%d\n",sum);
84 for(i=1; i<=sum; i++)
85 {
86 printf("%d %d\n",rk[i].x+1,rk[i].y+1);
87 }
88 }
89 }
90 return 0;
91 }
92 int cmp(const void*p,const void*q)
93 {
94 ss*n=(ss*)p;
95 ss*m=(ss*)q;
96 return n->x-m->x;
97 }

 

Codeforce C. Pearls in a Row的更多相关文章

  1. Educational Codeforces Round 6 C. Pearls in a Row

    Educational Codeforces Round 6 C. Pearls in a Row 题意:一个3e5范围的序列:要你分成最多数量的子序列,其中子序列必须是只有两个数相同, 其余的数只能 ...

  2. CodeForces - 620C Pearls in a Row 贪心 STL

    C. Pearls in a Row time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  3. Codeforces 620C EDU C.Pearls in a Row ( set + greed )

    C. Pearls in a Row There are n pearls in a row. Let's enumerate them with integers from 1 to n from ...

  4. codeforces C. Pearls in a Row map的应用

    C. Pearls in a Row time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  5. C. Pearls in a Row

    C. Pearls in a Row time limit per test 2 seconds memory limit per test 256 megabytes input standard ...

  6. Educational Codeforces Round 6 C. Pearls in a Row set

    C. Pearls in a Row There are n pearls in a row. Let's enumerate them with integers from 1 to n from ...

  7. 【32.26%】【codeforces 620C】Pearls in a Row

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  8. CF620C Pearls in a Row

    CF620C Pearls in a Row 洛谷评测传送门 题目描述 There are nn pearls in a row. Let's enumerate them with integers ...

  9. CodeForces 620C Pearls in a Row

    水题,每当出现重复就分割开来,最后留下的尾巴给最后一段 #include<cstdio> #include<cstring> #include<cmath> #in ...

随机推荐

  1. c++基础知识03

    1.嵌套循环案例--九九乘法表 int main() { //利用嵌套循环乘法口诀表 for (int n = 1; n <= 9; n++) { for (int m = 1; m <= ...

  2. mysql事务控制语言TCL

    Transaction Control Language 事务控制语言 事务:一个或一组sql语句组成一个执行单元,这个执行单元作为不可分割的整体执行.如果某个语句执行错误,整个单元回滚到最初的状态. ...

  3. MapReduce02 序列化

    目录 MapReduce 序列化 概述 自定义序列化 常用数据序列化类型 int与IntWritable转化 Text与String 序列化读写方法 自定义bean对象实现序列化接口(Writable ...

  4. 11-如何通过newman生成不同类型的测试报告

    postman生成测试报告需要一个插件:newman ,并且这个插件需要先安装 . 安装步骤: 安装nodejs: newman是由nodejs开发,所以要先安装它的运行环境,下载地址:http:// ...

  5. ORACLE 服务器验证

    位于$ORACLE_HOME/network/admin/sqlnet.oraSQLNET.AUTHENTICATION_SERVICES=none|all|ntsnone:关闭操作系统认证,只能密码 ...

  6. Linux系统信息查看命令(ZZ)

    http://hi.baidu.com/thinkdifferent/blog/item/22f4a80161630e011d958384.html转自一个baidu师兄的博客,很好的一个总结,推荐下 ...

  7. 【Linux】【Basis】进程

    1. 维基百科:https://zh.wikipedia.org/wiki/%E8%A1%8C%E7%A8%8B 进程的类型: 终端:硬件设备,关联一个用户接口 与终端相关:通过终端启动 与终端无关: ...

  8. 【Linux】【Services】【Configuration】puppet

    1. 简介 1.1. 官方网站:https://docs.puppet.com/ 1.2. puppet是IT基础设施自动化管理工具,他的整个生命周期包括:provisioning,configura ...

  9. Identity Server 4 从入门到落地(十)—— 编写可配置的客户端和Web Api

    前面的部分: Identity Server 4 从入门到落地(一)-- 从IdentityServer4.Admin开始 Identity Server 4 从入门到落地(二)-- 理解授权码模式 ...

  10. vm16虚拟机安装win11

    vm16虚拟机安装win11 参考https://baijiahao.baidu.com/s?id=1712702900207158969&wfr=spider&for=pc win1 ...