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

NYOJ 744 蚂蚁的难题(一)

时间:2014-08-13 12:33:46      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   div   amp   

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=744

 

标准水题目。。找规律即可。。

 

题解:

找规律水题,任取两组数即可,如4,8。计算得这个区间异或最大值为7^8=15=(1111)2=2^4-1;

再任意找一组数2,6,计算得这个区间异或最大值为2^5=7=(111)2=2^3-1;

通过上述分析可得知最大值为2^n-1,而n正是右边界的数的二进制位数。

 

 

 

 
#include <stdio.h>
int main()
{
    long long a,b,x;
    while(~scanf("%lld%lld",&a,&b))
    {
        x = a ^ b;
        int cnt = 0;
        while(x)
            ++cnt , x >>= 1;
        printf("%lld\n",((1LL)<<cnt)-1);
    }
    return 0;
}
        

 

NYOJ 744 蚂蚁的难题(一),布布扣,bubuko.com

NYOJ 744 蚂蚁的难题(一)

标签:style   blog   http   color   io   ar   div   amp   

原文地址:http://www.cnblogs.com/ltwy/p/3909429.html

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