Codeforces Round #254 (Div. 1) D. DZY Loves Strings hash 暴力
D. DZY Loves Strings
题目连接:
http://codeforces.com/contest/444/problem/D
Description
DZY loves strings, and he enjoys collecting them.
In China, many people like to use strings containing their names' initials, for example: xyz, jcvb, dzy, dyh.
Once DZY found a lucky string s. A lot of pairs of good friends came to DZY when they heard about the news. The first member of the i-th pair has name ai, the second one has name bi. Each pair wondered if there is a substring of the lucky string containing both of their names. If so, they want to find the one with minimum length, which can give them good luck and make their friendship last forever.
Please help DZY for each pair find the minimum length of the substring of s that contains both ai and bi, or point out that such substring doesn't exist.
A substring of s is a string slsl + 1... sr for some integers l, r (1 ≤ l ≤ r ≤ |s|). The length of such the substring is (r - l + 1).
A string p contains some another string q if there is a substring of p equal to q.
Input
The first line contains a string s (1 ≤ |s| ≤ 50000).
The second line contains a non-negative integer q (0 ≤ q ≤ 100000) — the number of pairs. Each of the next q lines describes a pair, the line contains two space-separated strings ai and bi (1 ≤ |ai|, |bi| ≤ 4).
It is guaranteed that all the strings only consist of lowercase English letters.
Output
For each pair, print a line containing a single integer — the minimum length of the required substring. If there is no such substring, output -1.
Sample Input
xudyhduxyz
3
xyz xyz
dyh xyz
dzy xyz
Sample Output
3
8
-1
题意
给你一个串,然后有q次询问,每次询问给你两个串s1,s2
你需要找到一个最短的串s,使得这个串包含这两个子串
题解:
因为询问的那个串的长度才4嘛
我就预处理所有串的出现的位置,然后每次O(n+m)去找最小的长度就好了
再加一个人尽皆知的剪枝:如果这个询问问过了,那就直接输出答案
然后就莽过去了……
代码
#include <bits/stdc++.h>
using namespace std;
const int N=5e4+10;
const int NN=6e5+10;
char s[N];
vector<int> v[NN];
map<pair<int,int>,int> mp;
int main()
{
scanf("%s",s);
int n=strlen(s);
for(int l=1;l<=4;l++)
{
for(int i=0;i+l-1<n;i++)
{
int tmp=0;
for(int j=l-1;j>=0;j--)
tmp=(tmp*27)+s[i+j]-'a'+1;
v[tmp].push_back(i);
}
}
int q;
scanf("%d",&q);
while(q--)
{
char s1[6],s2[6],ss[2];
scanf("%s%s",s1,s2);
int t1=0,t2=0,l1=strlen(s1),l2=strlen(s2);
for(int j=l1-1;j>=0;j--)
t1=(t1*27)+s1[j]-'a'+1;
for(int j=l2-1;j>=0;j--)
t2=(t2*27)+s2[j]-'a'+1;
if(mp[make_pair(t1,t2)]!=0)
{
printf("%d\n",mp[make_pair(t1,t2)]);
continue;
}
int ans=n+2;
for(int j=0,i=0;i<v[t1].size();i++)
{
for(;j<v[t2].size()&&v[t2][j]<v[t1][i];j++);
if(j>=v[t2].size()) break;
ans=min(ans,max(v[t2][j]+l2,v[t1][i]+l1)-min(v[t1][i],v[t2][j]));
}
for(int j=v[t2].size()-1,i=v[t1].size()-1;i>=0;i--)
{
for(;j>=0&&v[t2][j]>v[t1][i];j--);
if(j<0) break;
ans=min(ans,max(v[t2][j]+l2,v[t1][i]+l1)-min(v[t1][i],v[t2][j]));
}
if(ans==n+2) ans=-1;
mp[make_pair(t1,t2)]=ans;
printf("%d\n",ans);
}
return 0;
}
Codeforces Round #254 (Div. 1) D. DZY Loves Strings hash 暴力的更多相关文章
- Codeforces Round #254 (Div. 1) D - DZY Loves Strings
D - DZY Loves Strings 思路:感觉这种把询问按大小分成两类解决的问题都很不好想.. https://codeforces.com/blog/entry/12959 题解说得很清楚啦 ...
- Codeforces Round #FF (Div. 2):B. DZY Loves Strings
B. DZY Loves Strings time limit per test 1 second memory limit per test 256 megabytes input standard ...
- Codeforces Round #254 (Div. 1) C. DZY Loves Colors 线段树
题目链接: http://codeforces.com/problemset/problem/444/C J. DZY Loves Colors time limit per test:2 secon ...
- Codeforces Round #254 (Div. 1) C. DZY Loves Colors 分块
C. DZY Loves Colors 题目连接: http://codeforces.com/contest/444/problem/C Description DZY loves colors, ...
- Codeforces Round #254 (Div. 1) A. DZY Loves Physics 智力题
A. DZY Loves Physics 题目连接: http://codeforces.com/contest/444/problem/A Description DZY loves Physics ...
- Codeforces Round #254 (Div. 2) A. DZY Loves Chessboard —— dfs
题目链接: http://codeforces.com/problemset/problem/445/A 题解: 这道题是在现场赛的最后一分钟通过的,相当惊险,而且做的过程也很曲折. 先是用递推,结果 ...
- Codeforces Round #254 (Div. 2)B. DZY Loves Chemistry
B. DZY Loves Chemistry time limit per test 1 second memory limit per test 256 megabytes input standa ...
- Codeforces Round #254 (Div. 1) C DZY Loves Colors
http://codeforces.com/contest/444/problem/C 题意:给出一个数组,初始时每个值从1--n分别是1--n. 然后两种操作. 1:操作 a.b内的数字是a,b内 ...
- [题解]Codeforces Round #254 (Div. 2) B - DZY Loves Chemistry
链接:http://codeforces.com/contest/445/problem/B 描述:n种药品,m个反应关系,按照一定顺序放进试管中.如果当前放入的药品与试管中的药品要反应,危险系数变为 ...
随机推荐
- TCP协议端口状态说明:CLOSE-WAIT、TIME-WAIT 、LISTENING、SYN_SENT、ESTABLISHED、LAST-ACK ...
了解TCP协议端口的连接状态,对排除和定位网络或系统故障会有很大帮助,因此了解一下是有必要的: 一.LISTENING 提供某种服务,侦听远方TCP端口的连接请求,当提供的服务没有被连接时,处于LI ...
- 数据结构之 栈 (Python 版)
数据结构之 栈 (Python 版) -- 利用线性表实现栈 栈的特性: 后进先出 基于顺序表实现栈 class SStack(): ''' 基于顺序表 实现的 栈类 ''' def __init__ ...
- java基础76 web服务器之Tomcat服务器
(注:本文是以“压缩版Tomcat”为例,展开描述的) 一.Tomcat服务器的介绍 1.服务器 1.1.服务器的种类 从物理上讲:服务器就是一台pc机器.至少8核/8G以上.内存至少用T来计算.宽带 ...
- Git push将本地版本库的分支推送到远程服务器上对应的分支
在使用git commit命令将修改从暂存区提交到本地版本库后,只剩下最后一步将本地版本库的分支推送到远程服务器上对应的分支了,如果不清楚版本库的构成,可以查看我的另一篇,git 仓库的基本结构. g ...
- thinkphp模版常量替换机制
- python中mock的使用
什么是mock? mock在翻译过来有模拟的意思.这里要介绍的mock是辅助单元测试的一个模块.它允许您用模拟对象替换您的系统的部分,并对它们已使用的方式进行断言. 在Python2.x 中 mock ...
- Struts 2 Tutorial
Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applicati ...
- 树莓派3B更换源为阿里源
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak #科大源 sudo nano /etc/apt/sources.list deb htt ...
- **PHP转义Json里的特殊字符的函数
http://www.banghui.org/11332.html 在给一个 App 做 API,从服务器端的 MySQL 取出数据,然后生成 JSON.数据中有个字段叫 content,里面保存了文 ...
- hdu 5112 (2014北京现场赛 A题)
给出某个时刻对应的速度 求出相邻时刻的平均速度 输出最大值 Sample Input23 // n2 2 //t v1 13 430 31 52 0 Sample OutputCase #1: 2.0 ...