#1103 : Colorful Lecture Note
时间限制:10000ms 单点时限:1000ms 内存限制:256MB
描述
Little Hi is writing an algorithm lecture note for Little Ho. To make the note more comprehensible, Little Hi tries to color some of the text. Unfortunately Little Hi is using a plain(black and white) text editor. So he decides to tag the text which should be colored for now and color them later when he has a more powerful software such as Microsoft Word.
There are only lowercase letters and spaces in the lecture text. To mark the color of a piece of text, Little Hi add a pair of tags surrounding the text, at the beginning and at the end where COLOR is one of “red”, “yellow” or “blue”.
Two tag pairs may be overlapped only if one pair is completely inside the other pair. Text is colored by the nearest surrounding tag. For example, Little Hi would not write something like “aaabbbccc”. However “aaabbbccc” is possible and “bbb” is colored blue.
Given such a text, you need to calculate how many letters(spaces are not counted) are colored red, yellow and blue.
输入
Input contains one line: the text with color tags. The length is no more than 1000 characters.
输出
Output three numbers count_red, count_yellow, count_blue, indicating the numbers of characters colored by red, yellow and blue.
样例输入
< yellow>aaa< blue>bbb< /blue>ccc< /yellow>dddd< red>abc< /red>
样例输出
3 6 3
题意:给你一串字符串< > < />,每个括号之内颜色字体的统计,按顺序输出红色、黄色、蓝色字体的个数
这道题猛一看有种括号配对的感觉,其实也差不多,把在栈中压入标记来统计
#include<cstdio>
#include<cstring>
#include<cctype>
#include<algorithm>
#include<stack>
using namespace std;
stack<char>s;
int main()
{
char a[1010];
while(gets(a)){
int r, y, b;
int len = strlen(a);
r = y = b = 0;
for(int i = 0; i < len; i++){
if(a[i] == '<'){
if(a[i+1] == 'r'){
s.push('r');
i+=4;
continue;
}
else if(a[i+1] == 'y'){
s.push('y');
i+=7;
continue;
}
else if(a[i+1] == 'b'){
s.push('b');
i+=5;
continue;
}
else if(a[i+1] == '/'){
s.pop();
if(a[i+2]=='r'){
i+=5;
continue;
}
else if(a[i+2]=='y'){
i+=8;
continue;
}
else if(a[i+2]=='b'){
i+=6;
continue;
}
}
}
else{
if(!s.empty()){
if(s.top()=='r' && isalpha(a[i]))
r++;
else if(s.top()=='y' && isalpha(a[i]))
y++;
else if(s.top()=='b' && isalpha(a[i]))
b++;
}
}
}
printf("%d %d %d\n", r, y, b);
}
return 0;
}

本文介绍了一个简单的算法问题——彩色笔记,任务是统计带有特定颜色标签的文本中各颜色字符的数量。通过使用栈来跟踪颜色标签,该算法可以高效地解决这一问题。文章详细解释了如何读取输入、处理标签并统计每种颜色字符的数量。
2974

被折叠的 条评论
为什么被折叠?



