首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】701C - They Are Everywhere(尺取法)

【CodeForces】701C - They Are Everywhere(尺取法)

作者头像
FishWang
发布2025-08-26 20:39:55
发布2025-08-26 20:39:55
17400
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

C. They Are Everywhere

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Sergei B., the young coach of Pokemons, has found the big house which consists of n flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each flat. Also, each flat is connected with the flat to the left and the flat to the right. Flat number 1 is only connected with the flat number 2 and the flat number n is only connected with the flat numbern - 1.

There is exactly one Pokemon of some type in each of these flats. Sergei B. asked residents of the house to let him enter their flats in order to catch Pokemons. After consulting the residents of the house decided to let Sergei B. enter one flat from the street, visit several flats and then go out from some flat. But they won't let him visit the same flat more than once.

Sergei B. was very pleased, and now he wants to visit as few flats as possible in order to collect Pokemons of all types that appear in this house. Your task is to help him and determine this minimum number of flats he has to visit.

Input

The first line contains the integer n (1 ≤ n ≤ 100 000) — the number of flats in the house.

The second line contains the row s with the length n, it consists of uppercase and lowercase letters of English alphabet, the i-th letter equals the type of Pokemon, which is in the flat number i.

Output

Print the minimum number of flats which Sergei B. should visit in order to catch Pokemons of all types which there are in the house.

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
3
AaA

output

代码语言:javascript
代码运行次数:0
运行
复制
2

input

代码语言:javascript
代码运行次数:0
运行
复制
7
bcAAcbc

output

代码语言:javascript
代码运行次数:0
运行
复制
3

input

代码语言:javascript
代码运行次数:0
运行
复制
6
aaBCCe

output

代码语言:javascript
代码运行次数:0
运行
复制
5

Note

In the first test Sergei B. can begin, for example, from the flat number 1 and end in the flat number 2.

In the second test Sergei B. can begin, for example, from the flat number 4 and end in the flat number 6.

In the third test Sergei B. must begin from the flat number 2 and end in the flat number 6.

题意:求一个最短区间可以包括所有字符。求最短区间长度。

题解:用尺取法,先取左端点L = 0,然后依次往后取,取到满足题意的结果后,再把左端点往右移,遇到不符合条件的,继续移动右端点,以此类推。在左端点右移的过程中,不断地更新结果ans的最小值即可。

对于大小写的问题就不用分开了,一个数组记录下全部的大写小写。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
#define CLR(a,b) memset(a,b,sizeof(a))
#define INF 0x3f3f3f3f
#define MAX 100000
#define idx(x) (x-'A')
char c[MAX+11];
int vis[58];		//0表示A,57表示z 
int main()
{
	int n;
	while (~scanf ("%d",&n))
	{
		scanf ("%s",c);
		int dif = 0;
		CLR(vis,0);
		for (int i = 0 ; i < n ; i++)
			if (!vis[c[i]-'A'])
			{
				dif++;
				vis[c[i]-'A']++;
			}
		int i,j;
		int ans = INF;
		int ant = 0;
		CLR(vis,0);
		int st = 0;
		for (i = 0 ; i < n ; i++)
		{
			int id = idx(c[i]);
			if (!vis[id])
				ant++;
			vis[id]++;
			if (ant == dif)		//首部前移 
			{
				while (ant == dif)
				{
					ans = min (ans , i - st + 1);
					int t = idx(c[st]);
					if (vis[t] == 1)		//此次前移就退出了 
						ant--;
					vis[t]--;
					st++;
				}
			}
		}
		printf ("%d\n",ans);
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档