轻量级前端框架助力开发者提升项目效率与性能
774
2022-10-03
FZU 2216 The Longest Straight (尺取法)
Description
ZB is playing a card game where the goal is to make straights. Each card in the deck has a number between 1 and M(including 1 and M). A straight is a sequence of cards with consecutive values. Values do not wrap around, so 1 does not come after M. In addition to regular cards, the deck also contains jokers. Each joker can be used as any valid number (between 1 and M, including 1 and M).You will be given N integers card[1] .. card[n] referring to the cards in your hand. Jokers are represented by zeros, and other cards are represented by their values. ZB wants to know the number of cards in the longest straight that can be formed using one or more cards from his hand.
Input
The first line contains an integer T, meaning the number of the cases.For each test case:The first line there are two integers N and M in the first line (1 <= N, M <= 100000), and the second line contains N integers card[i] (0 <= card[i] <= M).
Output
For each test case, output a single integer in a line – the longest straight ZB can get.
Sample Input
27 110 6 5 3 0 10 118 1000100 100 100 101 100 99 97 103
Sample Output
53
题意
给出 n n 张牌,其代表的数字在区间 [1,m][1,m] ,且 0 0 可以充当任意牌,问最长连续递增的区间长度是多少。
思路
首先我们可以对原数组进行处理,处理以后某两个数牌面中间所空缺牌的数量可以由该数组对应的差求得。
然后利用尺取法维护双指针,保证双指针之间代表的牌所空缺的数量小于等于 0 的数量,更新得出最大值即可。
AC 代码
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~