您的位置:首页 > 其它

Codeforces #375(Div.2)B.Text Document Analysis【模拟】水题

2016-10-04 17:41 615 查看
B. Text Document Analysis
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pages, or the number of characters.

In this problem you should implement the similar functionality.

You are given a string which only consists of:

· uppercase and lowercase English letters,

· underscore symbols (they are used as separators),

· parentheses (both opening and closing).

It is guaranteed that each opening parenthesis has a succeeding closing parenthesis. Similarly, each closing parentheses has a preceding opening parentheses matching it. For each pair of matching parentheses there are no
other parenthesis between them. In other words, each parenthesis in the string belongs to a matching "opening-closing" pair, and such pairs can't be nested.

For example, the following string is valid: "_Hello_Vasya(and_Petya)__bye_(and_OK)".

Word is a maximal sequence of consecutive letters, i.e. such sequence that the first character to the left and the first character to the right of it is an underscore, a
parenthesis, or it just does not exist. For example, the string above consists of seven words: "Hello", "Vasya",
"and", "Petya", "bye",
"and" and "OK". Write a program that finds:

· the length of the longest word outside the parentheses (print
0, if there is no word outside the parentheses),

· the number of words inside the parentheses (print
0, if there is no word inside the parentheses).

Input

The first line of the input contains a single integer
n (1 ≤ n ≤ 255) —
the length of the given string. The second line contains the string consisting of only lowercase and uppercase English letters, parentheses and underscore symbols.

Output

Print two space-separated integers:

· the length of the longest word outside the parentheses (print
0, if there is no word outside the parentheses),

· the number of words inside the parentheses (print
0, if there is no word inside the parentheses).

Examples

Input

37
_Hello_Vasya(and_Petya)__bye_(and_OK)
Output

5 4
 

Input

37
_a_(_b___c)__de_f(g_)__h__i(j_k_l)m__
Output

2 6
 

Input

27
(LoooonG)__shOrt__(LoooonG)
Output

5 2
 

Input

5
(___)
Output

0 0
 

Note

In the first sample, the words "Hello", "Vasya" and "bye"
are outside any of the parentheses, and the words "and", "Petya", "and"
and "OK" are inside. Note, that the word "and" is given twice and you should count it twice
in the answer.

 

题目大意:
给你一个长度为N的序列,让你找两个值,一个是在括号外边的单词的最长长度,以及在括号内的单词的个数。

模拟即可。

#include<stdio.h>
#include<string.h>
#include<iostream>
using namespace std;
char a[25500];
int main()
{
int n;
while(~scanf("%d",&n))
{
int output1=0;
int output2=0;
int flag=0;
scanf("%s",a);
for(int i=0;i<n;i++)
{
if(a[i]=='(')
{
flag=1;continue;
}
if(a[i]==')')
{
flag=0;continue;
}
if(a[i]!='_')
{
int len=0;
while(a[i]!='_'&&i<n)
{
if(a[i]=='('||a[i]==')')
{
i--;break;
}
len++;
i++;
}
if(flag==0)output1=max(output1,len);
else output2++;
}
}
printf("%d %d\n",output1,output2);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Codeforces #375Div.2