A Digital Library contains millions of books, stored according to their titles, authors, key words of their abstracts, publishers, and published years. Each book is assigned an unique 7-digit number as its ID. Given any query from a reader, you are supposed
to output the resulting books, sorted in increasing order of their ID's.

Input Specification:

Each input file contains one test case. For each case, the first line contains a positive integer N (<=10000) which is the total number of books. Then N blocks follow, each contains the information of a book in 6 lines:

  • Line #1: the 7-digit ID number;
  • Line #2: the book title -- a string of no more than 80 characters;
  • Line #3: the author -- a string of no more than 80 characters;
  • Line #4: the key words -- each word is a string of no more than 10 characters without any white space, and the keywords are separated by exactly one space;
  • Line #5: the publisher -- a string of no more than 80 characters;
  • Line #6: the published year -- a 4-digit number which is in the range [1000, 3000].

It is assumed that each book belongs to one author only, and contains no more than 5 key words; there are no more than 1000 distinct key words in total; and there are no more than 1000 distinct publishers.

After the book information, there is a line containing a positive integer M (<=1000) which is the number of user's search queries. Then M lines follow, each in one of the formats shown below:

  • 1: a book title
  • 2: name of an author
  • 3: a key word
  • 4: name of a publisher
  • 5: a 4-digit number representing the year

Output Specification:

For each query, first print the original query in a line, then output the resulting book ID's in increasing order, each occupying a line. If no book is found, print "Not Found" instead.

Sample Input:

3
1111111
The Testing Book
Yue Chen
test code debug sort keywords
ZUCS Print
2011
3333333
Another Testing Book
Yue Chen
test code sort keywords
ZUCS Print2
2012
2222222
The Testing Book
CYLL
keywords debug book
ZUCS Print2
2011
6
1: The Testing Book
2: Yue Chen
3: keywords
4: ZUCS Print
5: 2011
3: blablabla

Sample Output:

1: The Testing Book
1111111
2222222
2: Yue Chen
1111111
3333333
3: keywords
1111111
2222222
3333333
4: ZUCS Print
1111111
5: 2011
1111111
2222222
3: blablabla
Not Found
思路:输入后,排序,不会超时.注释部分,year用int表示,有个case错误;换成了char数组,就正确了……奇怪!
/*
#include <iostream>
#include"stdio.h"
#include"stdlib.h"
#include"algorithm"
#include"string.h"
using namespace std; struct book{
char id[8];
char title[81];
char author[81];
char key[61];
char publisher[81];
int year;
};
bool sortById(struct book b1,struct book b2){
if(strcmp(b1.id,b2.id)<0)
return true;
return false;
}
int main()
{
int N,M;
scanf("%d",&N);
struct book b[10000]; for(int i=0;i<N;i++){
scanf("%s",b[i].id);
getchar();//读取末尾的换行符 gets(b[i].title); gets(b[i].author); gets(b[i].key); gets(b[i].publisher); scanf("%d",&b[i].year); }
sort(b,b+N,sortById);//按照书的ID递增排序 scanf("%d",&M);
char choice[3];
int year;
for(int i=0;i<M;i++){
scanf("%s",choice);
getchar();//读取空格
char str[81]; bool flag = false; if(strcmp(choice,"1:")==0){
gets(str);
printf("%s %s\n",choice,str);
for(int j=0;j<N;j++){
if(strcmp(b[j].title,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"2:")==0){
gets(str);
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
if(strcmp(b[j].author,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"3:")==0){
gets(str);
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
string s = b[j].key;
int pos = s.find(str);
int len = strlen(str);
if(pos!=s.npos&&(s[pos+len]==' '||s[pos+len]=='\0')&&(pos==0||s[pos-1]==' '))//避免str只是某个关键字的子串
{
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"4:")==0){
gets(str);
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
if(strcmp(b[j].publisher,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"5:")==0){
scanf("%d",&year);
printf("%s %d\n",choice,year); for(int j=0;j<N;j++){
if(b[j].year==year){
printf("%s\n",b[j].id);
flag =true;
}
}
}
if(false == flag){
printf("Not Found\n");
}
}
return 0;
}
*/
#include <iostream>
#include"stdio.h"
#include"stdlib.h"
#include"algorithm"
#include"string.h"
using namespace std; struct book{
char id[8];
char title[81];
char author[81];
char key[61];
char publisher[81];
char year[5];
};
bool sortById(struct book b1,struct book b2){
if(strcmp(b1.id,b2.id)<0)
return true;
return false;
}
int main()
{
int N,M;
scanf("%d",&N);
struct book b[10000]; for(int i=0;i<N;i++){
scanf("%s",b[i].id);
getchar();//读取末尾的换行符 gets(b[i].title); gets(b[i].author); gets(b[i].key); gets(b[i].publisher); gets(b[i].year); }
sort(b,b+N,sortById);//按照书的ID递增排序 scanf("%d",&M);
char choice[3];
for(int i=0;i<M;i++){
scanf("%s",choice);
getchar();//读取空格
char str[81]; bool flag = false;
gets(str);
if(strcmp(choice,"1:")==0){ printf("%s %s\n",choice,str);
for(int j=0;j<N;j++){
if(strcmp(b[j].title,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"2:")==0){
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
if(strcmp(b[j].author,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"3:")==0){
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
string s = b[j].key;
int pos = s.find(str);
int len = strlen(str);
if(pos!=s.npos&&(s[pos+len]==' '||s[pos+len]=='\0')&&(pos==0||s[pos-1]==' '))//避免str只是某个关键字的子串
{
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"4:")==0){
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
if(strcmp(b[j].publisher,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
else if (strcmp(choice,"5:")==0){
printf("%s %s\n",choice,str); for(int j=0;j<N;j++){
if(strcmp(b[j].year,str)==0){
printf("%s\n",b[j].id);
flag =true;
}
}
}
if(false == flag){
printf("Not Found\n");
}
}
return 0;
}

												

1022. Digital Library (30)的更多相关文章

  1. pat 甲级 1022. Digital Library (30)

    1022. Digital Library (30) 时间限制 1000 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A Di ...

  2. PAT 甲级 1022 Digital Library (30 分)(字符串读入getline,istringstream,测试点2时间坑点)

    1022 Digital Library (30 分)   A Digital Library contains millions of books, stored according to thei ...

  3. 1022 Digital Library (30 分)

    1022 Digital Library (30 分)   A Digital Library contains millions of books, stored according to thei ...

  4. 1022. Digital Library (30) -map -字符串处理

    题目如下: A Digital Library contains millions of books, stored according to their titles, authors, key w ...

  5. 1022 Digital Library (30)(30 point(s))

    problem A Digital Library contains millions of books, stored according to their titles, authors, key ...

  6. 1022 Digital Library (30)(30 分)

    A Digital Library contains millions of books, stored according to their titles, authors, key words o ...

  7. PAT Advanced 1022 Digital Library (30 分)

    A Digital Library contains millions of books, stored according to their titles, authors, key words o ...

  8. PAT A 1022. Digital Library (30)【结构体排序检索】

    https://www.patest.cn/contests/pat-a-practise/1022 直接模拟, 输入,按id排序,检索 #include <iostream> #incl ...

  9. PAT (Advanced Level) 1022. Digital Library (30)

    简单模拟题. 写的时候注意一些小优化,小心TLE. #include<iostream> #include<cstring> #include<cmath> #in ...

随机推荐

  1. C语言函数的读写

    文件打开关闭函数:fopen()和fclose() <FILE *fopen(char *filename, char *mode)| int fclose(FILE *fp)> 字符读写 ...

  2. java学习笔记(2):获取文件名和自定义文件过滤器

    //自定义文件过滤器import java.io.File; import javax.swing.filechooser.*; public class JavaChooser extends Fi ...

  3. 在C#程序中实现插件架构

    阅读提示:这篇文章将讲述如何利用C#奇妙的特性,实现插件架构,用插件(plug-ins)机制建立可扩展的解决方案. 在.NET框架下的C#语言,和其他.NET语言一样提供了很多强大的特性和机制.其中一 ...

  4. windows下自动关机

    定时:at 00:00 shutdown -s     //在00:00时关机 倒计时:shutdown -s -t 3600   //3600s后关机 取消:shutdown -a

  5. json入门(二)

    背景 之前最早的时候,也见过类似于这样的字符串: {"list":[           {"ArticleId":7392749,"BlogId&q ...

  6. 滚动到底部加载更多及下拉刷新listview的使用

    最新内容建议直接访问原文:滚动到底部加载更多及下拉刷新listview的使用 本文主要介绍可同时实现下拉刷新及滑动到底部加载更多的ListView的使用. 该ListView优点包括:a. 可自定义下 ...

  7. Python与Hack

    1.Python的函数:关键字def()表示函数开始,可以在括号内填写任何变量,然后这些变量会被以引用的方式传递给函数,也就是说,函数内对这些变量的任何改变都会影响它们在主调函数中的值: 2.迭代:用 ...

  8. [工作中的设计模式]备忘录模式memento

    一.模式解析 备忘录对象是一个用来存储另外一个对象内部状态的快照的对象.备忘录模式的用意是在不破坏封装的条件下,将一个对象的状态捕捉(Capture)住,并外部化,存储起来,从而可以在将来合适的时候把 ...

  9. TestNg依赖详解(三)------灵活的文件配置依赖

    配置型的依赖测试,让依赖测试不局限于测试代码中,在XML文件中进行灵活的依赖配置 原创文章,版权所有,允许转载,标明出处:http://blog.csdn.net/wanghantong Javaco ...

  10. Fzu月赛11 老S的旅行计划 dij

    Description 老S在某城市生活的非常不自在,想趁着ICPC举办期间在省内转转.已知老S所在的省有N个城市,M条无向边(对于某一对结点可能出现重边).由于省内的交通相当糟糕,通过某条边所需要花 ...