HDU6103

题目链接

官方题解:两个不重合的子串向中心一起延长会形成奇偶长度两种合串。枚举一下中心向外延伸,如果和超过了阈值弹掉中心处的位置。双指针维护。时间复杂度O(n2) 另解:枚举[1,i],[j,n]用同样方法往内缩。时间复杂度O(n2) 。

思路:先枚举两个子串的对称轴向外延伸,将他们差值保存在一个数组里面再用尺取法求出最长的子序列的长度。

#include <iostream>  
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <string>
#include <string.h>
#include <cmath>
#include <sstream>
#include <set>
#include <map>
#include <functional>
#include <queue>
#include <vector>
using namespace std;

const int maxn = 5010;
string str;
int num[maxn];
int t, m, res, len, cnt;

int solve()//尺取法
{
    int n = 0, sum = 0, ans = 0, s = 0;
    while (1)
    {
        while (n < cnt&&sum+num[n] <= m)
        {
            sum += num[n++];            
        }

        ans = max(n - s, ans);
        sum -= num[s++];
        if (n >= cnt)
            break;
    }
    return ans;
}

int main()
{
    cin >> t;
    while (t--)
    {
        cin >> m >> str;
        len = str.length(), res = 0, cnt;
        for (int i = 0; i <=len ; i++)//枚举对称轴
        {
            cnt = 0;
            for (int j = 1; i + j < len&&i - j >= 0; j++)//为偶数的情况
            {
                num[cnt++] = abs(str[i + j] - str[i - j]);
            }
            res = max(res, solve());
        }

        for (int i = 0; i <= len; i++)
        {
            cnt = 0;
            for (int j = 1; i + j - 1 < len&&i - j >= 0; j++)//为奇数的情况
            {
                num[cnt++] = abs(str[i + j - 1] - str[i - j]);
            }
            res = max(res, solve());
        }
        cout << res << endl;
    }
}

关于尺取法的题目 POJ3061

关键代码
void solve(){  
    int left = 0, right = 0, sum = 0, res = n + 1;  
    while (true){  

        while (right < n && sum < s)
        {  
            sum += a[right++];  
        }  
        if (sum < s) 
            break;  

        res = min(right - left, res);  
        sum -= a[left++];  
    }  
    if (res < n + 1)
        printf("%d\n", res);  
    else
         printf("0\n");  
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值