Codeforces Round #375 (Div. 2) B
Description
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).
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.
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).
37
_Hello_Vasya(and_Petya)__bye_(and_OK)
5 4
37
_a_(_b___c)__de_f(g_)__h__i(j_k_l)m__
2 6
27
(LoooonG)__shOrt__(LoooonG)
5 2
5
(___)
0 0
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.
题意:求括号里面单词的个数,和括号外面单词的最长长度
解法:flag标记是否进入了 ( 还是出去了 ) ,进入 ( ,判断s[i]和s[i+1],出去 ) ,计算单词长度,用MAX纪录最大值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | #include<bits/stdc++.h> using namespace std; int n; char s[300]; int main() { int flag=0; int flag1=0; int sum=0; int num=0; int MAX=-1; scanf ( "%d%s" ,&n,s); for ( int i=0; i< strlen (s); i++) { if (s[i]== '(' ) { flag1=1; } else if (s[i]== ')' ) { flag1=0; } if (flag1==0) { // MAX=max(MAX,sum); if ((s[i]>= 'A' &&s[i]<= 'Z' ||s[i]>= 'a' &&s[i]<= 'z' )) { // cout<<s[i]<<endl; sum++; // cout<<sum<<endl; MAX=max(MAX,sum); } else { //cout<<sum<<endl; MAX=max(MAX,sum); // cout<<MAX<<endl; sum=0; } } } //cout<<sum<<endl; for ( int i=0;i< strlen (s);i++) { if (s[i]== '(' ) { flag=1; } else if (s[i]== ')' ) { flag=0; } if (flag==1) { if (s[i]>= 'A' &&s[i]<= 'Z' ||s[i]>= 'a' &&s[i]<= 'z' ) { if (s[i+1]== '_' ||s[i+1]== ')' ||s[i+1]== '(' &&i+1< strlen (s)) { num++; } } // cout<<s[i]<<endl; } } cout<<MAX<< " " <<num<<endl; return 0; } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~