SPOJ - EPALIN - Extend to Palindrome

14 篇文章 2 订阅
2 篇文章 0 订阅

题目链接
VJ题目链接

EPALIN - Extend to Palindrome

no tags

Your task is, given an integer N, to make a palindrome (word that reads the same when you reverse it) of length at least N (1 <= N <= 100,000). Any palindrome will do.

Easy, isn’t it? That’s what you thought before you passed it on to your inexperienced team-mate. When the contest is almost over, you find out that that problem still isn’t solved. The problem with the code is that the strings generated are often not palindromic. There’s not enough time to start again from scratch or to debug his messy code.

Seeing that the situation is desperate, you decide to simply write some additional code that takes the output and adds just enough extra characters to it to make it a palindrome and hope for the best. Your solution should take as its input a string and produce the smallest palindrome that can be formed by adding zero or more characters at its end. The input string will consist of only upper and lower case letters.

Example
Input:
aaaa
abba
amanaplanacanal
xyz
Output:
aaaa
abba
amanaplanacanalpanama
xyzyx
Note:
  1. All palindromes are considered case-sensitive (i.e. ‘Aa’ is not a palindrome).
  2. Large I/O. Be careful in certain languages.
题意:

在子串后补最少的字符,使字符串变成回文串。

题解:

Hash求回文字符串基操,先计算字符串顺序和逆序的哈希值,从1-len枚举 i , 通过顺逆区间的哈希值判断 i (包括 i )后面的子串是否回文串,如果是则在子串后补 i(不包括 i ) 前面的字符。

AC代码:

#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
const int maxn=100005;
const ull M=1331;
ull power[maxn],Hash1[maxn],Hash2[maxn];
char s[maxn];
void into()
{
	power[0]=1;
	for(int i=1;i<maxn;i++)
	power[i]=power[i-1]*M;
}
int main()
{
	into(); //初始化进制的乘积 不用每次计算 
	while(~scanf("%s",s+1))
	{
		int len=strlen(s+1);
		Hash1[0]=0;         //顺序hash值初始化 
		Hash2[len+1]=0;     //逆序hash值初始化 
		for(int i=1; i<=len; i++)
		{
			Hash1[i]=Hash1[i-1]*M+s[i]-'A';
			Hash2[len+1-i]=Hash2[len+2-i]*M+s[len+1-i]-'A';
		}
		int flag=0;      //判断 i 后面的子串是否有回文串 
		for(int i=1;i<=len;i++)
		{
				int l=i,r=len;
				ull ans=Hash1[r]-Hash1[l-1]*power[r-l+1];
				ull sum=Hash2[l]-Hash2[r+1]*power[r-l+1];
				if(ans==sum)
				{
					flag=1;
					printf("%s",s+1);
					for(int j=i-1;j>=1;j--)
					printf("%c",s[j]);
					printf("\n");
					break;
				}
		}
		if(flag==0){       //如果 i后面的子串没有回文串,构造回文串 
		printf("%s",s+1);
		for(int i=len-1;i>=1;i--)
		printf("%c",s[i]);
		printf("\n");
		}
	}
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
洛谷的SPOJ需要注册一个SPOJ账号并进行绑定才能进行交题。您可以按照以下步骤进行注册: 1. 打开洛谷网站(https://www.luogu.com.cn/)并登录您的洛谷账号。 2. 在网站顶部导航栏中找到“题库”选项,将鼠标悬停在上面,然后选择“SPOJ”。 3. 在SPOJ页面上,您会看到一个提示,要您注册SPOJ账号并进行绑定。点击提示中的链接,将会跳转到SPOJ注册页面。 4. 在SPOJ注册页面上,按照要填写您的用户名、密码和邮箱等信息,并完成注册。 5. 注册完成后,返回洛谷网站,再次进入SPOJ页面。您会看到一个输入框,要您输入刚刚注册的SPOJ用户名。输入用户名后,点击“绑定”按钮即可完成绑定。 现在您已经成功注册并绑定了SPOJ账号,可以开始在洛谷的SPOJ题库上刷题了。祝您顺利完成编程练习!\[1\]\[2\] #### 引用[.reference_title] - *1* *3* [(洛谷入门系列,适合洛谷新用户)洛谷功能全解](https://blog.csdn.net/rrc12345/article/details/122500057)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [luogu p7492 序列](https://blog.csdn.net/zhu_yin233/article/details/122051384)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

giao源

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值