Index Generation
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 230   Accepted: 89

Description

Most nonfiction and reference books have an index to help readers find references to specific terms or concepts in the text. Here is a sample index.

larch, 4, 237, 238, 414 
+ Monty Python and, 64, 65, 66 
+ planting of, 17 
Lenny Kravitz, 50 
+ going his way, 53 
lumbago, 107 
mango 
+ Chris Kattan, 380 
+ storage of, 87, 90 
+ use in Nethack, 500, 501 
+ Vitamin C content, 192

Each index entry contains a primary entry followed by zero or more secondary entries, which begin with a '+'. Entries will normally be followed by a list of page references, but a primary entry might not be if at least one secondary entry is present (as is the case with mango, above). Primary entries are sorted, and secondary entries following a primary entry are also sorted. Sorting is case-insensitive. Page references for an entry are in ascending order and do not include duplicates. (A duplicate could occur if there are two or more identical entries on the same page.)

Your task is to read a document that has index information embedded within it and produce the index. Documents consist of one or more lines of ASCII text. The page number starts at 1, and the character '&' indicates the start of a new page (which adds 1 to the current page number). Index entries are indicated by a marker, which in its most elaborate form has the following syntax:

{text%primary$secondary} 
Here text is the text to be indexed, primary is an alternative primary entry, and secondary is a secondary entry. Both '%primary' and '$secondary' are optional, but if both are present they must appear in the order given. If primary is present then it is used as the primary entry, and if not then text is used as the primary entry. If secondary is present then the marker adds a page reference for that secondary entry; otherwise it adds a page reference for the primary entry. A single marker cannot add a page reference for both a primary and secondary entry. Here are examples of each of the four possible types of marker, which correspond to four of the entries in the sample index above.

... his {lumbago} was acting up, so ... 
... {Lenny%Lenny Kravitz} lit up the crowd with his version of ... 
... Monty Python often used the {larch$Monty Python and} in ... 
... when storing {mangos%mango$storage of}, be sure to ...

Input

The input consists of one or more documents, followed by a line containing only '**' that signals the end of the input. Documents are implictly numbered starting with 1. Each document consists of one or more lines of text followed by a line containing only '*'. Each line of text will be at most 79 characters long, not counting end-of-line characters. For document i, output the line 'DOCUMENT i' followed by the sorted index using the exact output format shown in the examples.

Output

Note:

A document will contain at most 100 markers, with at most 20 primary entries. 
A primary entry will have at most 5 secondary entries. 
An entry will have at most 10 unique page references (not including duplicates). 
The character '&' will not appear anywhere within a marker, and will appear at most 500 times within a document. 
The character '*' is used only to signal the end of a document or the end of the input. 
The characters '{', '}', '%', and '$' will only be used to define markers, and will not appear in any text or entries. 
A marker may span one or more lines. Every end-of-line within a marker must be converted to a single space. 
A space within a marker (including a converted end-of-line) is normally included in the text/entry, just like any other character. However, any space that immediately follows '{', immediately precedes '}', or is immediately adjacent to '%' or '$' must be ignored. 
The total length of a marker, measured from the opening '{' to the closing '}', and in which all embedded end-of-lines are converted to spaces, will be at most 79 characters.

Sample Input

Call me Ishmael.
*
One {fish $unary}, two {fish$ binary},&red {fish $ scarlet}, blue {fish$
azure}. & By { Dr. Seuss }.
*
This is a {simple } & & { document} that &{
simply %simple
$adverb
} & {illustrates %vision} &&&&& one {simple-minded% simple} {Judge}'s {vision}
for what a {document } might { look % vision} like.
*
**

Sample Output

DOCUMENT 1
DOCUMENT 2
Dr. Seuss, 3
fish
+ azure, 2
+ binary, 1
+ scarlet, 2
+ unary, 1
DOCUMENT 3
document, 3, 10
Judge, 10
simple, 1, 10
+ adverb, 4
vision, 5, 10
 /*
Name: Shangli_Cloud
Copyright: Shangli_Cloud
Author: Shangli_Cloud
Date: 10/10/14 08:15
Description:
字符串处理题,
在读取过程中,遇到’&'就PAGe++;
我们要处理的对象为{},
对象有 primary,secondary,page属性,所以结构体存储。
当遇到'{'是增加entry,遇标记,处理。
排序,三个因素。
我们遇标记处理,定义一个next_token()标记函数,
定义一个next_char()函数为next_token()函数服务。
注意,当我们遇到某些字符时,需要读取下一个字符,之后再用next_char()的会又会
读取下一个字符,这个字符就跳过了。
所以增加一个变量 lookahead表示是否是有效字符的开始。
*/
#include"iostream"
#include"cstdio"
#include"cstring"
#include"string"
#include"algorithm"
#include"set"
#include"map"
#include"stack"
#include"queue"
#include"vector"
#include"cstdlib"
#include"ctime"
using namespace std;
const int EndOfDocument=-;
const int EndOfFile=-;
char ch;
char token;
int page;
bool lookahead;
struct Entry
{
string primary;
string secondary;
int page;
Entry(string p,string s):primary(p),secondary(s),page(::page){};
} ;
vector<Entry> entry;
int string_compare(const string &s,const string &t)
{
int m=s.length();
int n=t.length();
int k=m<n?m:n;
for(int i=;i<k;i++)
{
int a=toupper(s[i]);
int b=toupper(t[i]);
if(a!=b)
return a-b;
}
return m==n?:m<n?-:;
}
bool less_than(const Entry &s,const Entry &t)
{
int cmp=string_compare(s.primary,t.primary);
if(cmp<)
return true;
if(cmp>)
return false;
cmp=string_compare(s.secondary,t.secondary);
if(cmp<)
return true;
if(cmp>)
return false;
return s.page<t.page;
}
inline char next_char()
{
if(lookahead)
lookahead=false;
else
ch=cin.get();
return ch;
} char next_token ()
{
switch (next_char ())
{
case '*':
token = (next_char () == '*') ? EndOfFile : EndOfDocument;
break;
case ' ':
case '\n':
next_char ();
if (ch == '%' || ch == '$' || ch == '}')
token = ch;
else {
token = ' ';
lookahead = true;
break;
}
case '{': case '%': case '$':
token = ch;
lookahead = ! isspace (next_char ());
break;
default:
token = ch;
}
return token;
} inline bool is_delimiter(char t)
{
return t=='%'||t=='$'||t=='}';
} void add_entry ()
{
string primary, secondary;
while (! is_delimiter (next_token ()))
primary += token;
if (token == '%')
{
primary.erase (); //primary="";
while (! is_delimiter (next_token ()))
primary += token;
}
if (token == '$')
while (! is_delimiter (next_token ()))
secondary += token;
entry.push_back (Entry (primary, secondary));
} int main ()
{
for (int document = ; ; ++document)
{
if (next_token () == EndOfFile) break;
cout << "DOCUMENT " << document;
page = ;
entry.clear ();
entry.push_back (Entry ("", ""));
//cout<<"----"<<entry.size()<<endl;
do {
if (token == '&')
++page;
else if (token == '{')
add_entry ();
} while (next_token () != EndOfDocument);
sort (entry.begin (), entry.end (), less_than);
for (int i = ; i < entry.size(); ++i)
{
if (entry[i].primary == entry[i-].primary)
if (entry[i].secondary == entry[i-].secondary)
{
if (entry[i].page != entry[i-].page)
cout << ", " << entry[i].page;
}
else
cout<<"\n+ "<<entry[i].secondary<<", "<<entry[i].page;
else
{
cout << '\n' << entry[i].primary;
if (entry[i].secondary == "")
cout << ", " << entry[i].page;
else
cout<<"\n+ "<<entry[i].secondary<<", "<<entry[i].page;
}
}
cout << endl;
}
return ;
}

Index Generation的更多相关文章

  1. MySQL: Building the best INDEX for a given SELECT

    Table of Contents The ProblemAlgorithmDigressionFirst, some examplesAlgorithm, Step 1 (WHERE "c ...

  2. Solr4.8.0源码分析(22)之SolrCloud的Recovery策略(三)

    Solr4.8.0源码分析(22)之SolrCloud的Recovery策略(三) 本文是SolrCloud的Recovery策略系列的第三篇文章,前面两篇主要介绍了Recovery的总体流程,以及P ...

  3. 【MIT-6.824】Lab 1: MapReduce

    Lab 1链接:https://pdos.csail.mit.edu/6.824/labs/lab-1.html Part I: Map/Reduce input and output Part I需 ...

  4. [8]windows内核情景分析--窗口消息

    消息与钩子 众所周知,Windows系统是消息驱动的,现在我们就来看Windows的消息机制. 早期的Windows的窗口图形机制是在用户空间实现的,后来为了提高图形处理效率,将这部分移入内核空间,在 ...

  5. [分布式系统学习] 6.824 LEC1 MapReduce 笔记

    什么是Map-Reduce呢? Map指的是一个形如下面定义的函数. def Map(k, v): //return [(k1, v1), (k2, v2), (k3, v3), ...] pass ...

  6. 微软职位内部推荐-Senior Software Lead-Index Gen

    微软近期Open的职位: Position: Senior Software Development Lead Bing Index Generation team is hiring! As one ...

  7. 用C++写一个没人用的ECS

    github地址:https://github.com/yangrc1234/Resecs 在做大作业的时候自己实现了一个简单的ECS,起了个名字叫Resecs. 这里提一下一些实现的细节,作为回顾. ...

  8. Mit6.824 Lab1-MapReduce

    前言 Mit6.824 是我在学习一些分布式系统方面的知识的时候偶然看到的,然后就开始尝试跟课.不得不说,国外的课程难度是真的大,一周的时间居然要学一门 Go 语言,然后还要读论文,进而做MapRed ...

  9. Generating Complex Procedural Terrains Using GPU

    前言:感慨于居然不用tesselation也可以产生这么复杂的地形,当然致命的那个关于不能有洞的缺陷还是没有办法,但是这个赶脚生成的已经足够好了,再加上其它模型估 计效果还是比较震撼的.总之好文共分享 ...

随机推荐

  1. Windows 8.1及Windows8 JDK环境变量配置

    一.首先安装JDK JDK:http://www.oracle.com/technetwork/cn/java/javase/downloads/index.html 根据操作系统选择相应的版本 二. ...

  2. BITED数学建模七日谈之二:怎样阅读数学模型教材

    今天进入我们数学建模七日谈的第二天:怎样阅读数学建模教材? 大家再学习数学建模这门课程或准备比赛的时候,往往都是从教材开始的,教材的系统性让我们能够很快,很深入地了解前人在数学模型方面已有的研究成果, ...

  3. libvirt虚拟系统如何增加usb设备

    之前干这些事情都是通过virt-manager来搞定的.不过由于这个图形界面不太方便,而且现在没法打开(具体原因不详,每次打开提示一些方法未实现什么的),所以试下用libvirt的命令virsh来搞定 ...

  4. Linux cat命令参数及使用方法详解

    cat是Linux系统下用来查看文件连续内容用的指令,字面上的含意是“concatenate”(连续)的缩写.除了用来作为显示文件内容外,cat指令也可用于标准流上的处理,如将显示的信息转入或附加另一 ...

  5. iOS事件机制(二)

    从上一篇的内容我们知道,在iOS中一个事件用一个UIEvent对象表示,UITouch用来表示一次对屏幕的操作动作,由多个UITouch对象构成了一个UIEvent对象.另外,UIResponder是 ...

  6. 【C语言】-循环的嵌套

    循环的嵌套:当在一个循环语句中嵌入另一个循环时,成为循环的嵌套. 循环嵌套的形式: (1)for语句中嵌入for语句: for ( ) { for ( ) { ... } } (2)for语句嵌入wh ...

  7. Spring入门(11)-Spring与Junit整合

    POM配置 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3. ...

  8. oracle 监测数据库是否存在指定字段

    public static bool ExistColumn(string tableName, string columnName, string connStr) { using (OracleC ...

  9. Java日期处理类

    1.Date java.util.Date 2.Calendar 日历类,通过getInstance()获取实例对象,可以获取年月日时分秒 3.SimpleDateFormat 日期格式化,forma ...

  10. ID生成器的一种可扩展实现方案

    ID生成器主要为了解决业务程序生成记录ID的场景,而一个好的ID生成器肯定要满足扩展性好.并发性好的特点,本文下面介绍一种满足上述特点的实现方案. 此方案的核心思想是:每次需要扩容机器时,将每个节点维 ...