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. cocoaPads 安装及出现Analyzing dependencies之后卡死解决方案

    1.安装 a. 查看源 gem sources -l b. 设置源: sudo gem sources -a http://ruby.taobao.org c. 删除源:sudo gem source ...

  2. 理解flex_对齐

    容器属性: 左右对齐方式:justify-content:flex-start/flex-end/center/space-between/space-around; 上下对齐方式:align-ite ...

  3. flex_宽度补全

    宽度40px,另一个的补全宽度: <!DOCTYPE html> <html lang="en"> <head> <meta charse ...

  4. hash 分区的用途是什么?

    Hash partitioning enables easy partitioning of data that does not lend itself to rangeor list partit ...

  5. 【java IO】使用Java输入输出流 读取txt文件内数据,进行拼接后写入到另一个文件中

    package com.sxd.test.util; import java.io.BufferedReader; import java.io.BufferedWriter; import java ...

  6. [转载]explicit关键字

    本文转自http://www.programlife.net/cpp-explicit-keyword.html. 其实explicit主要用于防止隐式转换,用于修饰构造函数.复制构造函数[注意:一般 ...

  7. java的几种连接池

    连接池的管理用了了享元模式,这里对连接池进行简单设计. 一.设计思路 1.连接池配置属性DBbean:里面存放可以配置的一些属性 2.连接池接口IConnectionPool:里面定义一些基本的获取连 ...

  8. 编写css相关注意事项以及小技巧

    一.小技巧 1.对于开始写网站css之前一般都要对css进行重置(养成写注释的习惯): ;;} body{font-size:16px;} img{border:none;} li{list-styl ...

  9. const int *

    5.Please choose the right statement about constusage: A.const int a;//const interger B.int const a;/ ...

  10. 疯狂java学习笔记之面向对象(一) - 定义类、方法、构造器

    Java面向对象 1.定义类 2.创建对象.调用方法 类和对象: 某一类对象的概念定义. 比如:人类 - 抽象出来的概念(不特指某个人) 对象 - 在类的概念下产生的一个实例,它就是一个对象了. ja ...