zoukankan      html  css  js  c++  java
  • Text Document Analysis CodeForces

    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).

    Example

    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的字符串,求出括号里面单词的数量和括号外面最长单词的长度 
    即便是暴力模拟 还是很需要掌握技巧的
     
     1 #include<cstdio>
     2 #include<cstring>
     3 #include<cmath>
     4 #include<algorithm>
     5 #include<queue>
     6 #include<cctype>
     7 using namespace std;
     8 
     9 int main() {
    10     int n;
    11     char a[305];
    12     while(scanf("%d%s",&n,a)!=EOF){
    13         int sum=0,maxn=0,len=0,flag=0;
    14         for (int i=0 ;i<n ;i++){
    15             if (a[i]=='(') flag=1;
    16             if (a[i]==')') flag=0;
    17             if (isalpha(a[i])) len++;
    18             else len=0;
    19             if (flag==0) maxn=max(maxn,len);
    20             else if (len==1) sum++;
    21         }
    22         printf("%d %d
    ",maxn,sum);
    23     }
    24     return 0;
    25 }
     
  • 相关阅读:
    安装node-gyp
    node版本切换
    electron-vue运行只出现项目目录不出现效果
    高级运维工程师的必备技术
    linux 下的shutdown指令
    数据库实体联系模型与关系模型
    数据库表设计1
    实体-关系模型
    Excel中怎么快速选中区域
    EXCEL中给包含某个字段的单元格所在行标注颜色
  • 原文地址:https://www.cnblogs.com/qldabiaoge/p/8521972.html
Copyright © 2011-2022 走看看