Isomorphic Inversion 哈希判断 Contest1818 - 2019年我能变强组队训练赛第十场

本文探讨了一种算法,用于找出最长的连续子字符串,这些子字符串可以被分割成形成回文的最大部分。通过使用哈希判断,算法有效地确定了序列是否为回文,并解决了在给定长度下找到最多回文分割的问题。

Isomorphic Inversion

题目描述
Let s be a given string of up to 106 digits. Find the maximal k for which it is possible to partition s into k consecutive contiguous substrings, such that the k parts form a palindrome.
More precisely, we say that strings s0, s1, . . . , sk−1 form a palindrome if si = sk−1−i for all 0 ≤ i < k.
In the first sample case, we can split the string 652526 into 4 parts as 6|52|52|6, and these parts together form a palindrome. It turns out that it is impossible to split this input into more than 4 parts while still making sure the parts form a palindrome.

输入
A nonempty string of up to 106 digits.

输出
Print the maximal value of k on a single line.

在这里插入图片描述
题意:
给出一个序列,问这个序列中回文序列的个数是多少

分析:有没有一种方法去实现判断当前的序列是不是回文串呢???
那就可以用哈希判断了,其实说到底就是判断当前的值是不是相等的

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<string>
#include<cmath>
#include<cstring>
#include<set>
#include<queue>
#include<stack>
#include<map>
#define rep(i,a,b) for(int i=a;i<=b;i++)
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
const int N=1e6+10;
const int INF=0x3f3f3f3f;
char str[N];
ull base=81;
ull ha[N];
int main()
{
    #ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
    #endif // ONLINE_JUDGE
    scanf("%s",str+1);
    ha[0]=1;
    int len=strlen(str+1);
    for(int i=1;i<=len;i++) ha[i]=ha[i-1]*base;

    int i=1,j=len;
//    cout<<len<<endl;
    int ans=0;
    while(i<=j){
        ull res1=(str[i]-'0'),res2=(str[j]-'0');
        int t=j;
        while(res1!=res2){
            if(i+1>=j-1) break;
            i++;
            j--;
            res1=res1*base+(str[i]-'0');
            res2=(str[j]-'0')*ha[t-j]+res2;
        } 

        if(res1!=res2){
            ans++;
            break;
        }

        if(i!=j)
        ans+=2;
        if(i==j) ans++;
        i++;
        j--;
    }
    printf("%d\n",ans);
    return 0;
}


内容概要:本文系统梳理了多个科研领域的前沿研究与技术实现,重点涵盖FDTD方法中的完美匹配层(PML)研究,以及Matlab/Simulink在电磁、电力、控制、通信、信号处理、图像处理、路径规划、能源系统优化等领域的仿真与算法实现。文中列举了大量基于Matlab和Python的科研案例,如风电功率预测、负荷预测、无人机三维路径规划、电池系统故障诊断、雷达模拟、通信编码、微电网优化调度等,并强调结合智能优化算法(如粒子群、遗传算法、深度学习等)提升系统性能。同时,提供了丰富的代码资源与仿真模型,涵盖永磁同步电机控制、逆变器设计、多智能体任务分配、虚拟电厂调度等复杂系统,助力科研人员快速开展复现实验与创新研究。; 适合人群:具备一定编程基础,熟悉Matlab/Python工具,从事电气工程、自动化、通信、人工智能、新能源、控制科学等相关领域研究的研发人员及研究生。; 使用场景及目标:① 学习并实现FDTD仿真中的PML边界条件以有效抑制数值反射;② 掌握Matlab/Simulink在多物理场建模、控制系统设计与优化算法中的综合应用;③ 借助提供的代码资源完成科研复现、课程设计、竞赛项目或工程原型开发; 阅读建议:此资源以科研实战为导向,不仅提供理论方法,更强调代码实现与仿真验证。建议读者结合自身研究方向,按目录顺序查阅相关模块,下载配套代码进行调试与二次开发,以达到学以致用、融会贯通的目的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值