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

HDU 6103 Kirinriki

时间:2020-07-03 23:35:32      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:双指针   href   ret   ++   指针   题解   for   while   相交   

题目地址

题解

双指针法(尺取法),向前遍历一次对称轴,再向后遍历一次对称轴,就可通过已知的字符串得到其他所有不相交的字符串对,其中向后遍历等价于向前遍历反转的字符串。

代码

#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int t, m;
inline int delta(int i, int r, string &str) { return abs(str[i] - str[r - i]); }
int cal(string &str) {
    int ans = 0;
    // r 为区间右端点
    for (int r = str.size() - 1; r > 0; --r) {
        // p 为对称轴
        int p = (r + 1) / 2, cnt = 0, dis = 0;
        for (int i = 0, j = 0; j < p;) {
            if (dis + delta(j, r, str) <= m) {
                ++cnt;
                dis += delta(j, r, str);
                ans = max(cnt, ans);
                ++j;
            } else {
                if (i == j) {
                    ++i, ++j;
                    continue;
                }
                dis -= delta(i, r, str);
                ++i;
                --cnt;
            }
        }
    }
    return ans;
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cin >> t;
    while (t--) {
        string str;
        cin >> m >> str;
        string res(str.rbegin(), str.rend());
        cout << max(cal(str), cal(res)) << ‘\n‘;
    }
    return 0;
}

HDU 6103 Kirinriki

标签:双指针   href   ret   ++   指针   题解   for   while   相交   

原文地址:https://www.cnblogs.com/mostiray/p/13232526.html

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