首页 > 其他分享 >洛谷 P7469 [NOI Online 2021 提高组] 积木小赛(字符串哈希)

洛谷 P7469 [NOI Online 2021 提高组] 积木小赛(字符串哈希)

时间:2024-10-09 17:23:02浏览次数:13  
标签:P7469 洛谷 NOI int h1 cin long h2 len

题目传送门

解题思路

读题后,我们可以发现,字母串 t 只能从两边删除,于是我们可以枚举一个区间 [i,j],然后在字母串 s 中匹配(可以用指针来进行匹配),同时可以做字符串哈希去重。

注意

如果怕被卡,可以用双模哈希;

记得开 long long

代码

#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,b=131,len;
char s[3001],t[3001];
long long m1=1e9+7,m2=998244353;
pair<int,int> a[6000001];
main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	
	cin>>n;
	cin>>s+1;
	cin>>t+1;
	int h1,h2,p;
	for(int i=1;i<=n;i++)
	{
		h1=0,h2=0,p=1;
		for(int j=i;j<=n;j++)
		{
			while(p<=n&&s[p]!=t[j])p++;
			if(p>n)break;
			p++;
			h1=(1ll*h1*b+t[j])%m1;
			h2=(1ll*h2*b+t[j])%m2;
			a[++len]=make_pair(h1,h2);
		}
	 } 
	sort(a+1,a+len+1);
	int ans=unique(a+1,a+len+1)-a-1;
	cout<<ans;
	return 0;
}

标签:P7469,洛谷,NOI,int,h1,cin,long,h2,len
From: https://blog.csdn.net/2403_87021226/article/details/142768246

相关文章

  • 10.8日noip联考总结
    10.8日noip联考总结T1考试的时候没有想到可以快速用组合数进行统计答案,于是在正常的匹配栈里还套了一个\(O(n)\)的统计答案。其实只需要在里面统计个数,在用乘法原理就可以了。括号匹配引导我们使用匹配栈,而需要快速统计答案又可以想到组合计数。T2这题不用输出方案的话就......