题目大意:有n只牛,每只牛有k个属性,接下来n个数字,每个数字的二进制位上的1和0分别表示某种属性的有或者无,然后一个特殊数列就是,一个区间内所有牛的各种属性的总和相等(有e种1属性 e种2属性and so on),问你这排牛的最长的特殊数列长度是多少。
思路:看上去像dp,但思路走不通,然后看网上大佬的思路,仿佛推开新世界的大门。
数组sum[i][j]表示从的1到i头cow属性j的和。所以题目要求等价为求满足sum[i][0]-sum[j][0]==sum[i][1]-sum[j][1]==.....==sum[i][k-1]-sum[j][k-1] (j
举样例来说明一下:
x 属性 牛 7 1 1 1 1 6 0 1 1 2 7 1 1 1 3 2 0 1 0 4 1 1 0 0 5 4 0 0 1 6 2 0 1 0 7按行累加得sum[i]:1 1 11 2 22 3 32 4 33 4 33 4 43 5 4都减去第一列得c[i]:0 0 00 1 10 1 10 2 10 1 00 1 10 2 1所以说 最大区间是 6-2 = 4
这道题最主要是还是让我理解了哈希的用处,虽然怎么用还再摸索中,但也慢慢的推开了哈希的大门了吧,还有这个题意的转化也非常的重要。
#include#include #include #include #include #include #include #include #include #include #include #include #include #include
Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 16727 | Accepted: 4736 |
Description
Farmer John's N cows (1 ≤ N ≤ 100,000) share many similarities. In fact, FJ has been able to narrow down the list of features shared by his cows to a list of only K different features (1 ≤ K ≤ 30). For example, cows exhibiting feature #1 might have spots, cows exhibiting feature #2 might prefer C to Pascal, and so on.
FJ has even devised a concise way to describe each cow in terms of its "feature ID", a single K-bit integer whose binary representation tells us the set of features exhibited by the cow. As an example, suppose a cow has feature ID = 13. Since 13 written in binary is 1101, this means our cow exhibits features 1, 3, and 4 (reading right to left), but not feature 2. More generally, we find a 1 in the 2^(i-1) place if a cow exhibits feature i.
Always the sensitive fellow, FJ lined up cows 1..N in a long row and noticed that certain ranges of cows are somewhat "balanced" in terms of the features the exhibit. A contiguous range of cows i..j is balanced if each of the K possible features is exhibited by the same number of cows in the range. FJ is curious as to the size of the largest balanced range of cows. See if you can determine it.
Input
Output
Sample Input
7 37672142
Sample Output
4
Hint