HDU 2594 Simpsons’ Hidden Talents(kmp)

本文深入探讨了KMP算法的原理与应用,通过具体案例展示了如何使用KMP算法寻找两个字符串之间的最长公共前后缀,提供了详细的代码实现,是理解和实践KMP算法的宝贵资源。

Homer: Marge, I just figured out a way to discover some of the talents we weren’t aware we had.
Marge: Yeah, what is it?
Homer: Take me for example. I want to find out if I have a talent in politics, OK?
Marge: OK.
Homer: So I take some politician’s name, say Clinton, and try to find the length of the longest prefix
in Clinton’s name that is a suffix in my name. That’s how close I am to being a politician like Clinton
Marge: Why on earth choose the longest prefix that is a suffix???
Homer: Well, our talents are deeply hidden within ourselves, Marge.
Marge: So how close are you?
Homer: 0!
Marge: I’m not surprised.
Homer: But you know, you must have some real math talent hidden deep in you.
Marge: How come?
Homer: Riemann and Marjorie gives 3!!!
Marge: Who the heck is Riemann?
Homer: Never mind.
Write a program that, when given strings s1 and s2, finds the longest prefix of s1 that is a suffix of s2.
Input
Input consists of two lines. The first line contains s1 and the second line contains s2. You may assume all letters are in lowercase.
Output
Output consists of a single line that contains the longest string that is a prefix of s1 and a suffix of s2, followed by the length of that prefix. If the longest such string is the empty string, then the output should be 0.
The lengths of s1 and s2 will be at most 50000.
Sample Input

clinton
homer
riemann
marjorie

Sample Output

0
rie 3

题意描述:给出两个字符串,去看第一个字符串的后缀与第二个串的前缀是否有相同的,如果有就输出,相同的部分和长度,如果没有就输出0.

解题方法:用一个kmp中的next数组去标记第二个字符串,然后去遍历第一个字符串和第二个字符串是否有匹配的,当第一个字符串遍历完成时记录j的值,表示此时第二个字符串所遍历到的位置就可以了。

AC代码:

#include<stdio.h>
#include<string.h>

int ls,ls1;
char s[50100],s1[50100];
int ans,k;
int next[50100];

void get_next()
{
	int i=0,j=1;
	while(j<ls)
	{
		if(i==0&&s[i]!=s[j])
			next[j++]=0;
		else if(i>0&&s[i]!=s[j])
			i=next[i-1];
		else
		{
			next[j]=i+1;
			i++;
			j++;
		}
	}
}

void kmp()
{
	int i=0,j=0,d=1;
	int flag=0;
	while(i<ls1)
	{
		if(j==0&&s1[i]!=s[j])
			i++;
		else if(j>0&&s1[i]!=s[j])
			j=next[j-1];
		else
		{
			i++;
			j++;
		}
		if(i==ls1)
             ans=j;
	}
}

int main()
{
	while(scanf("%s%s",s,s1)!=EOF)
	{
		ls=strlen(s);
		ls1=strlen(s1);
		ans=0;
		k=0;
		get_next();
		kmp();
		if(ans==0)
			printf("0\n");
		else
		{
			for(int i=0;i<ans;i++)
				printf("%c",s[i]);
			printf(" %d\n",ans);
		}
	}
	return 0;
}
内容概要:本文提出了一种基于改进扩散模型的高海拔地区新能源高波动出力场景生成方法,并提供了完整的Python代码实现。该方法针对高海拔地区风能、光伏等新能源出力波动剧烈、不确定性高的特点,通过优化扩散模型的结构与训练策略,有效捕捉历史数据的概率分布特征与时序相关性,从而生成高质量、多样化的出力场景。文中详细阐述了模型的数学推导、网络架构设计、损失函数优化及采样算法改进,并通过实验证明其在拟合精度、场景多样性与稳定性方面优于传统生成模型,为电力系统在高比例新能源接入下的规划、调度与风险评估提供了可靠的场景输入支持。; 适合人群:具备一定Python编程能力和机器学习基础,从事新能源发电预测、电力系统分析、智能优化、场景生成等方向研究的科研人员、高校研究生及工程技术人员。; 使用场景及目标:①用于高海拔地区风电、光伏出力的不确定性建模与多场景生成;②支撑含高渗透率新能源的电力系统随机优化调度、鲁棒决策与风险评估;③为相关学术研究、论文复现与算法改进提供可运行的技术方案与代码基础; 阅读建议:建议读者结合所提供的完整资源(代码、数据集、说明文档)进行实践操作,重点关注扩散模型的前向加噪与反向去噪过程的设计细节,以及如何将其适配于新能源时序数据的生成任务,通过参数调优与对比实验深入理解模型的生成机制与性能边界。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值