博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ3320 Jessica's Reading Problem【尺取法】
阅读量:6265 次
发布时间:2019-06-22

本文共 2543 字,大约阅读时间需要 8 分钟。

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 12441   Accepted: 4234

Description

Jessica's a very lovely girl wooed by lots of boys. Recently she has a problem. The final exam is coming, yet she has spent little time on it. If she wants to pass it, she has to master all ideas included in a very thick text book. The author of that text book, like other authors, is extremely fussy about the ideas, thus some ideas are covered more than once. Jessica think if she managed to read each idea at least once, she can pass the exam. She decides to read only one contiguous part of the book which contains all ideas covered by the entire book. And of course, the sub-book should be as thin as possible.

A very hard-working boy had manually indexed for her each page of Jessica's text-book with what idea each page is about and thus made a big progress for his courtship. Here you come in to save your skin: given the index, help Jessica decide which contiguous part she should read. For convenience, each idea has been coded with an ID, which is a non-negative integer.

Input

The first line of input is an integer P (1 ≤ P ≤ 1000000), which is the number of pages of Jessica's text-book. The second line contains P non-negative integers describing what idea each page is about. The first integer is what the first page is about, the second integer is what the second page is about, and so on. You may assume all integers that appear can fit well in the signed 32-bit integer type.

Output

Output one line: the number of pages of the shortest contiguous part of the book which contains all ideals covered in the book.

Sample Input

51 8 8 8 1

Sample Output

2

Source

, Jerry

问题链接:。

题意简述一本书有P页,每一页都一个知识点,求最少的连续页数覆盖所有的知识点。

问题分析

用尺取法来解决。每读一页知识点就有可能增加,是单调递增的,满足用尺取法解决问题的条件。

先求出最前面的子序列,使之覆盖所有知识点;

重复后面一步,直到p个元素都使用到;

去掉子序列的第1个元素,子序列的后面再加上其他元素,使之满足子序列覆盖所有知识点的条件,找出最小的长度。

程序说明:(略)

AC的C++语言程序如下:

/* POJ3320 Jessica's Reading Problem */#include 
#include
#include
#include
using namespace std;const int N = 1000000;int a[N+1];int solve(int p){ // 统计总共有多少个知识点,存储于变量n中 set
eset; for(int i=0; i
count; int start=0, end=0, num=0, res=p; for(;;) { while(end < p && num < n) { if(count[a[end]]++ == 0) num++; end++; } if(num < n) break; res = min(res, end - start); if(--count[a[start++]] == 0) num--; } return res;}int main(){ int p; while(scanf("%d", &p) != EOF) { for(int i=0; i

转载于:https://www.cnblogs.com/tigerisland/p/7563662.html

你可能感兴趣的文章
90后美女的全能测试蜕变之路
查看>>
audit.rules
查看>>
Windows 10企业批量部署实战之WDS配置
查看>>
百元百鸡问题
查看>>
Microsoft System Center 2012部署(二)
查看>>
谈谈网站安全性的问题
查看>>
SQL Server 2017 AlwaysOn AG 自动初始化(三)
查看>>
AIX+RAC数据服务器开关机流程
查看>>
网关配置错误导致Outlook无法连线
查看>>
MongoDB查询 之 数组、内嵌文档和$where
查看>>
MS UC 2013-0-Prepare Tool
查看>>
《3D数学基础》2.1 矩阵基本概念、2.2 矩阵的数乘和加减法、2.3 方阵
查看>>
SCOM 2012 R2监控Microsoft Azure服务(1)配置管理包
查看>>
Lync Server外部访问系列PART5:模拟公网DNS
查看>>
[置顶] 基于ip的手机地理定位
查看>>
动态方法与动态代理(下篇)
查看>>
如果有天你看到我疯了,其实就是你疯了
查看>>
information_schema資料庫表信息
查看>>
使用W“.NET技术”CF实现SOA面向服务编程——简单的WCF开发实例
查看>>
【C#】利用TREE VIEW控件控制节点
查看>>