码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 6740 MUV LUV EXTRA(求循环节)

时间:2019-09-30 18:22:20      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:bsp   hid   opened   反向   targe   max   a*   %s   bre   

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6740

中文题意链接:http://acm.hdu.edu.cn/contests/contest_showproblem.php?pid=1010&cid=872

 

题解:反向用next数组求循环节(前i个字符的)即可。注意ans初始化应该为-inf(long long)

技术图片
#include <bits/stdc++.h>

const int maxn=1e7+5;
int a, b;
char s[maxn], x[maxn];
int next[maxn];

void calnext(char x[], int m)
{
    int i=0, j=-1;
    next[0]=-1;
    while(i<m)
    {
        while(j!=-1 && x[i]!=x[j]) j=next[j];
        next[++i]=++j;
    }
}


int main()
{
    while(~scanf("%d%d%s", &a, &b, s))
    {
        int cnt=0;
        for(int i=strlen(s)-1; i>=0; i--)
        {
            if(s[i]==.) break;
            x[cnt++]=s[i];
        }
        calnext(x, cnt);
        long long ans=-1e18;
        for(int i=1; i<=cnt; i++)
            ans=std::max(ans, 1ll*a*i-1ll*b*(i-next[i]));
        printf("%lld\n", ans);
    }
    return 0;
}
View Code

 

HDU 6740 MUV LUV EXTRA(求循环节)

标签:bsp   hid   opened   反向   targe   max   a*   %s   bre   

原文地址:https://www.cnblogs.com/Yokel062/p/11613620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!