1022. Digital Library (30)
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)的更多相关文章
- pat 甲级 1022. Digital Library (30)
1022. Digital Library (30) 时间限制 1000 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A Di ...
- PAT 甲级 1022 Digital Library (30 分)(字符串读入getline,istringstream,测试点2时间坑点)
1022 Digital Library (30 分) A Digital Library contains millions of books, stored according to thei ...
- 1022 Digital Library (30 分)
1022 Digital Library (30 分) A Digital Library contains millions of books, stored according to thei ...
- 1022. Digital Library (30) -map -字符串处理
题目如下: A Digital Library contains millions of books, stored according to their titles, authors, key w ...
- 1022 Digital Library (30)(30 point(s))
problem A Digital Library contains millions of books, stored according to their titles, authors, key ...
- 1022 Digital Library (30)(30 分)
A Digital Library contains millions of books, stored according to their titles, authors, key words o ...
- PAT Advanced 1022 Digital Library (30 分)
A Digital Library contains millions of books, stored according to their titles, authors, key words o ...
- PAT A 1022. Digital Library (30)【结构体排序检索】
https://www.patest.cn/contests/pat-a-practise/1022 直接模拟, 输入,按id排序,检索 #include <iostream> #incl ...
- PAT (Advanced Level) 1022. Digital Library (30)
简单模拟题. 写的时候注意一些小优化,小心TLE. #include<iostream> #include<cstring> #include<cmath> #in ...
随机推荐
- Apache Kafka for Item Setup
At Walmart.com in the U.S. and at Walmart's 11 other websites around the world, we provide seamless ...
- Loadrunner的自定义监控器
Loadrunner的自定义监控器 可以使用lr_user_data_point()来实现自定义监控,下面是一个小例子: double showsomething(); Action(){ doubl ...
- Http协议提要
HTTP协议提要 简单来说,HTTP就是一个基于应用层的通信规范:双方要进行通信,大家就要遵守一个规范---HTTP协议.HTTP协议从WWW服务器超文本到本地浏览器 ,可以使浏览器更加高效.HTTP ...
- Android Studio 引入Lambda表达式
依次点击 [File][Other Settings][Default Project Structure]确保当前项目使用的JDK版本是1.8. 打开项目(Project)的build.gradle ...
- hdu1963 完全背包(数据压缩)
题目链接:http://acm.split.hdu.edu.cn/showproblem.php?pid=1963 注意:题中有一句话说债券的价钱都是1000的倍数,我之前没看到这句话,写的完全背包, ...
- iOS10 UI教程视图的几何形状
iOS10 UI教程视图的几何形状 视图属性中的一部分属性可以让定义的视图绘制在屏幕上.在讲解这些属性前,我们首先将讲解,定义视图的几何形状所涉及到的结构类型.这些结构类型如下: CGPoint:它表 ...
- 软件打开时间、窗体透明度、背景色---《用delphi开发共享软件》-15.1任务管理器
1.计算软件启动了多长时间:用定时器,每分钟触发一次: procedure TFrmMain.tmCheckLegalTimer(Sender: TObject);Var Minutes:LongIn ...
- ArcGIS 点到直线的距离
/****点到直线的距离*** * 过点(x1,y1)和点(x2,y2)的直线方程为:KX -Y + (x2y1 - x1y2)/(x2-x1) = 0 * 设直线斜率为K = (y2-y1)/(x2 ...
- HowTo:使用数据流读写消息
本文主要演示使用TPL 数据流库从数据流块(dataflow block)读写消息. 提供了同步方法和异步方法. 主要使用BufferBlock,其既能作为message source,有能作为m ...
- HTML5 postMessage 和 onmessage API 详细应用
随着 HTML5 的发展,了解并熟悉 HTML5 的 API 接口是非常重要的.postMessage(send) 和 onmessage 此组 API 在 HTML5 中有着广泛的应用,比如 Web ...