A11215 | Polycarp and Letters
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Polycarp loves lowercase letters and dislikes uppercase ones. Once he got a string $s$ consisting only of lowercase and uppercase Latin letters.
Let $A$ be a set of positions in the string. Let's call it pretty if following conditions are met:
- letters on positions from $A$ in the string are all distinct and lowercase;
- there are no uppercase letters in the string which are situated between positions from $A$ (i.e. there is no such $j$ that $s[j]$ is an uppercase letter, and $a_{1}<j<a_{2}$ for some $a_{1}$ and $a_{2}$ from $A$ ).
Write a program that will determine the maximum number of elements in a pretty set of positions.
Let $A$ be a set of positions in the string. Let's call it pretty if following conditions are met:
- letters on positions from $A$ in the string are all distinct and lowercase;
- there are no uppercase letters in the string which are situated between positions from $A$ (i.e. there is no such $j$ that $s[j]$ is an uppercase letter, and $a_{1}<j<a_{2}$ for some $a_{1}$ and $a_{2}$ from $A$ ).
Write a program that will determine the maximum number of elements in a pretty set of positions.
输入格式
The first line contains a single integer $n$ ( $1<=n<=200$ ) — length of string $s$ .
The second line contains a string $s$ consisting of lowercase and uppercase Latin letters.
The second line contains a string $s$ consisting of lowercase and uppercase Latin letters.
输出格式
Print maximum number of elements in pretty set of positions for string $s$ .
输入输出样例
输入 #1
11 aaaaBaabAbA
输出 #1
2
输入 #2
12 zACaAbbaazzC
输出 #2
3
输入 #3
3 ABC
输出 #3
0
In the first example the desired positions might be $6$ and $8$ or $7$ and $8$ . Positions $6$ and $7$ contain letters 'a', position $8$ contains letter 'b'. The pair of positions $1$ and $8$ is not suitable because there is an uppercase letter 'B' between these position.
In the second example desired positions can be $7$ , $8$ and $11$ . There are other ways to choose pretty set consisting of three elements.
In the third example the given string $s$ does not contain any lowercase letters, so the answer is $0$ .
In the second example desired positions can be $7$ , $8$ and $11$ . There are other ways to choose pretty set consisting of three elements.
In the third example the given string $s$ does not contain any lowercase letters, so the answer is $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted