c语言sscanf函数的用法是什么
202
2022-09-16
HDU 6103 Kirinriki (尺取法)
Description
We define the distance of two strings A and B with same length n isdisA,B=∑n−1i=0|Ai−Bn−1−i|The difference between the two characters is defined as the difference in ASCII.You should find the maximum length of two non-overlapping substrings in given string S, and the distance between them are less then or equal to m.
Input
The first line of the input gives the number of test cases T; T test cases follow.Each case begins with one line with one integers m : the limit distance of substring.Then a string S follow.LimitsT≤100,0≤m≤5000Each character in the string is lowercase letter, 2≤|S|≤5000∑|S|≤20000
Output
For each test case output one interge denotes the answer : the maximum length of the substring.
Sample Input
15abcdefedcb
Sample Output
5
题意
给出字符串 s ,寻找其两个长度相同且不重叠的子串,满足其每位的 ascil 差值之和不大于 m ,且长度最长。
思路
因为字符串长度很小,故我们可以枚举其每一个前缀与每一个后缀,
然后在枚举的子串内利用尺取法将区间等分,
利用差值之和不大于 m 的条件双指针同时遍历两个区间,更新最大值即可。
更新: 2017.08.11 (关于为什么字符串需要反转再处理一次)
因为第一次我们处理的是字符串的前缀,反转相当于处理它的后缀。
假设该字符串为 abcdefghi ,最终答案为 def 与 ghi ,
我们处理的前缀要想包含这两个子串,其区间必须是 [a-i] ,且在尺取法进行过程中我们是围绕中心轴改变子串长度的,
此时的中心轴所在位置为 e 这一点,也就是说我们得到的结果可能是 bcd 与 fgh (两个长度相等且位置关于中心轴对称),
对于每一个前缀来说,其中心轴位置都靠左,所以显然得不到上面所说的答案,
于是我们需要利用同样的方法处理其所有后缀,最终结果会在 [d-i] 这段区间中得到。
AC 代码
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~