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

BZOJ 4300 绝世好题(位运算)

时间:2016-11-16 14:16:25      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:algorithm   problem   http   pre   can   进制   style   ret   题目   

 

【题目链接】 http://www.lydsy.com/JudgeOnline/problem.php?id=4300

 

【题目大意】

  给出一个序列a,求一个子序列b,使得&和不为0

 

【题解】

  记录某个位置上为1的&序列长度的最长值,对于每个加入的数字, 更新每个数组。

  __builtin_ctz(x)函数用于求出x的二进制位数。

 

【代码】

#include <cstdio>  
#include <algorithm>  
int x,ans,res,n,a[40];  
using namespace std;  
int main(){  
    scanf("%d",&n);  
    for(int i=1;i<=n;i++){  
        scanf("%d",&x);res=0;  
        for(int j=x;j;j-=j&(-j))res=max(res,a[__builtin_ctz(j)]);
        ans=max(ans,++res);  
        for(int j=x;j;j-=j&(-j))a[__builtin_ctz(j)]=res;  
    }printf("%d\n",ans);
    return 0; 
}

  

BZOJ 4300 绝世好题(位运算)

标签:algorithm   problem   http   pre   can   进制   style   ret   题目   

原文地址:http://www.cnblogs.com/forever97/p/bzoj4300.html

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