[bzoj 4300]绝世好题

Posted akoasm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[bzoj 4300]绝世好题相关的知识,希望对你有一定的参考价值。

题意:求一个最长子序列长度使得相邻的按位与不是0.

思路:

(首先(\%)一波出题人)

感觉思路有点奇怪,考虑为什么会(&)成0,要是0就必须每一位都至少一个是0,那么我们可得(f[i])表示第 i 位是1的最长子序列的长度,随便转移一下就可以了。

#include <bits/stdc++.h>

using namespace std;
const int maxn = 100010;
int f[maxn];

int n;
int a[maxn];
int ans;

int main () {
    cin >> n;
    for(int i = 1;i <= n; ++i) {
        cin >> a[i];
    }
    for(int i = 1;i <= n; ++i) {
        int res = 0;
        for(int j = 0;j <= 40; ++j) {
            if(a[i] & (1 << j)) {
                res = max(res,f[j] + 1);
            }
        }
        for(int j = 0;j <= 40; ++j) {
            if(a[i] & (1 << j)) {
                f[j] = res;
            }
        }
        ans = max(ans,res);
    }
    printf("%d
",ans);
    return 0;
}

以上是关于[bzoj 4300]绝世好题的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ-4300: 绝世好题 (递推)

bzoj 4300: 绝世好题

bzoj 4300 绝世好题

bzoj4300 绝世好题

BZOJ 4300 绝世好题(位运算)

[bzoj 4300]绝世好题