您的位置:首页 > 运维架构

CodeForces 733A Grasshopper And the String(水题)

2016-11-06 12:06 971 查看
A. Grasshopper And the String

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

One day, the Grasshopper was jumping on the lawn and found a piece of paper with a string. Grasshopper became interested what is the minimum jump ability he should have in order to be able to
reach the far end of the string, jumping only on vowels of the English alphabet.Jump ability is the maximum possible length of his jump.

Formally, consider that at the begginning the Grasshopper is located directly in front of the leftmost character of the string. His goal is to reach the position right after the rightmost character of the string. In one jump the Grasshopper could jump to the
right any distance from1 to the value of his jump ability.


The
picture corresponds to the first example.

The following letters are vowels: 'A', 'E', 'I',
'O', 'U' and 'Y'.

Input

The first line contains non-empty string consisting of capital English letters. It is guaranteed that the length of the string does not exceed 100.

Output

Print single integer a — the minimum jump ability of the Grasshopper
(in the number of symbols) that is needed to overcome the given string, jumping only on vowels.

Examples

input
ABABBBACFEYUKOTT


output
4


input
AAA


output
1

不认真读题的赤裸裸教训

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int main()
{
char s[110];
int i,j,k,l,m,n;
while(scanf("%s",s)!=EOF)
{
l=strlen(s);
k=-1;
int maxx=0;
for(i=0;i<l;i++)
{
if(s[i]=='A'||s[i]=='E'||s[i]=='I'||s[i]=='O'||s[i]=='U'||s[i]=='Y')
{
maxx=max(maxx,i-k);
k=i;
}
}
maxx=max(maxx,l-k);//注意
printf("%d\n",maxx);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: