【习题 5-10 UVA-1597】Searching the Web
【链接】 我是链接,点我呀:)
【题意】
在这里输入题意
【题解】
用map >mmap[100];来记录每一个数据段某个字符串出现的行数,以及用来判断这个字符串在这一段中存不存在。
**
->这里有一个地方要注意,千万不要在未确定这个字符串是否存在之前,调用mmap[i][s],因为这样,不管s存不存在,s都会加那么一个键值。
->而这就使得我们不能用更快的mmap[i].find(s)函数来寻找某个字符串在不在了.
->用mmap[i][s]访问,然后判断在不在的方式是会TLE的。
**
样例有9个'-'但实际上输出10个'-';
然后就是各个数据段之间的分隔符的输出。
or和and的输出都要用set来重新排序。
即从小的行开始到大的行依序输出。
【代码】
#include <bits/stdc++.h>
using namespace std;
const int N = 100;
int n, m;
vector <string> v[N + 10];
set <int> vv;
map <string, vector<int> > mmap[N + 10];
string s, ts;
bool have(int idx, string s)
{
if (mmap[idx].find(s)==mmap[idx].end())
return false;
else
return true;
}
int main()
{
//freopen("F:\\rush.txt", "r", stdin);
ios::sync_with_stdio(0), cin.tie(0);
cin >> n; cin.get();
for (int ii = 1; ii <= n; ii++)
{
int tot = 0;
while (getline(cin, s))
{
if (s == "**********") break;
v[ii].push_back(s);
int len = s.size();
for (int i = 0; i < len; i++)
if (isalpha(s[i]))
s[i] = tolower(s[i]);
else
s[i] = ' ';
stringstream temp(s);
string x;
while (temp >> x)
{
mmap[ii][x].push_back(tot);
}
tot++;
}
}
cin >> m; cin.get();
for (int i = 0; i < m; i++)
{
getline(cin, ts);
int fi = ts.find(' ', 0);
if (fi == -1)//find x
{
bool ok = false;
for (int j = 1; j <= n; j++)
if (have(j, ts))
{
if (ok) cout << "----------" << endl;
ok = true;
vv.clear();
for (int x : mmap[j][ts]) vv.insert(x);
for (int x : vv) cout << v[j][x] << endl;
}
if (!ok) cout << "Sorry, I found nothing." << endl;
cout << "==========" << endl;
}
else
{
int fi2 = ts.find(' ', fi + 1);
if (fi2 == -1)//not x
{
bool ok = false;
ts = ts.substr(fi);
while (ts[0] == ' ') ts.erase(0, 1);
for (int j = 1; j <= n; j++)
if (!have(j, ts))
{
if (ok) cout << "----------" << endl;
ok = true;
int lenv = v[j].size();
for (int k = 0; k < lenv; k++)
cout << v[j][k] << endl;
}
if (!ok) cout << "Sorry, I found nothing." << endl;
cout << "==========" << endl;
}
else // x y z
{
stringstream ss(ts);
string x, y, z;
ss >> x; ss >> y; ss >> z;
if (y == "OR")
{
bool ok = false;
for (int j = 1; j <= n; j++)
if (have(j, x) || have(j, z))
{
if (ok) cout << "----------" << endl;
ok = true;
vv.clear();
if (have(j,x))for (int t : mmap[j][x]) vv.insert(t);
if (have(j,z))for (int t : mmap[j][z]) vv.insert(t);
for (int t : vv) cout << v[j][t] << endl;
}
if (!ok) cout << "Sorry, I found nothing." << endl;
cout << "==========" << endl;
}
else
{
bool ok = false;
for (int j = 1; j <= n; j++)
if (have(j, x) && have(j, z))
{
if (ok) cout << "----------" << endl;
ok = true;
vv.clear();
for (int t : mmap[j][x]) vv.insert(t);
for (int t : mmap[j][z]) vv.insert(t);
for (int t : vv) cout << v[j][t] << endl;
}
if (!ok) cout << "Sorry, I found nothing." << endl;
cout << "==========" << endl;
}
}
}
}
return 0;
}
【习题 5-10 UVA-1597】Searching the Web的更多相关文章
- uva 1597 Searching the Web
The word "search engine" may not be strange to you. Generally speaking, a search engine se ...
- [刷题]算法竞赛入门经典(第2版) 5-10/UVa1597 - Searching the Web
题意:不难理解,照搬题意的解法. 代码:(Accepted,0.190s) //UVa1597 - Searching the Web //#define _XIENAOBAN_ #include&l ...
- Searching the Web论文阅读
Searching the Web (Arvind Arasu etc.) 1. 概述 2000年,23%网页每天更新,.com域内网页40%每天更新.网页生存半衰期是10天.描述方法可用Pois ...
- STL --- UVA 123 Searching Quickly
UVA - 123 Searching Quickly Problem's Link: http://acm.hust.edu.cn/vjudge/problem/viewProblem.acti ...
- ArcGIS Portal 10.4 本地坐标系的web 3d地形展示制作说明
原文:ArcGIS Portal 10.4 本地坐标系的web 3d地形展示制作说明 ArcGIS Portal 10.4 本地坐标系的web 3d地形展示制作说明 By 李远祥 ArcGIS Por ...
- 10 个基于 jQuery 的 Web 交互插件推荐
英文原文:10 jQuery for Web Interaction Plugins “用户交互”在现代的 Web 设计中占据了很大比例,这是互联网产品不可或缺的关键,对 Web 设计师也提出了更高的 ...
- 10个优秀的移动Web应用开发框架
在最近几年里,移动互联网高速发展.市场潜力巨大.继计算机.互联网之后,移动互联网正掀起第三次信息技术革命的浪潮,新技术.新应用不断涌现.今天这篇文章向大家推荐10大优秀的移动Web开发框架,帮助开发者 ...
- Searching the Web UVA - 1597
The word "search engine" may not be strange to you. Generally speaking, a search engine ...
- Nginx 1.10.2 发布,高性能 Web 服务器
Nginx 1.10.2 发布了.Nginx(发音同 engine x)是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器 更新内容: Changes with n ...
随机推荐
- 使用PHP来压缩CSS文件
这里将介绍使用PHP以一种简便的方式来压缩你的CSS文件.这种方法不需要命名你的.css文件和.php文件. 当前有许多方法需要将.css文件重命名成.php文件,然后在所有PHP文件中放置压缩代码. ...
- 2.CURL命令
转自:https://blog.csdn.net/ligang2585116/article/details/46548617 curl是一种命令行工具,作用是发出网络请求,然后得到和提取数据,显示在 ...
- 45. Express 框架 静态文件处理
转自:http://www.runoob.com/nodejs/nodejs-express-framework.html Express 提供了内置的中间件 express.static 来设置静态 ...
- AIX 适配器
1. 查看所有适配卡 lsdev -CHc adapter 2. 物理网卡适配卡 查看到物理网卡的个数与类型 lsdev -Cc adapter|grep ent 查看物理网卡具体插槽位( ...
- 用内置的库turtle来画一朵花,python3
题目:用内置的库turtle来画一朵花 看了群主最后成像的图片,应该是循环了36次画方框,每次有10度的偏移. 当然不能提前看答案,自己试着写代码. 之前有用过海龟画图来画过五角星.奥运五环.围棋盘等 ...
- Python-Flask项目开发--为什么需要搭建虚拟环境?
在使用python开发过程中,需要使用到某些工具包/框架等,需要联网下载. 例如,联网安装Flask框架flask-0.10.1版本:pip install flask==0.10.1 此时, ...
- 将字符串使用md5加密
>>> import md5 >>> md5.md5('123').hexdigest() '202cb962ac59075b964b07152d234b70' & ...
- 65.十一级指针实现百万qq号的增删查改以及排序写入
运行结果: 内存使用情况: 写入文件排序好的数据: 创建文件地址以及创建十一级指针 char *path = "QQ.txt"; char *sortpath = "QQ ...
- Tuple<int, int> Dictionary<string, object>妙用
Tuple<int, int> Dictionary<string, object>妙用
- Express简介、安装
Express 基于Node.js平台,快速.开放.极简的web开发框架,是目前最流行的基于Node.js的web开发框架,它提供一系列强大的功能,比如: 路由控制 参数获取 send和sendFil ...