codeforces 276D 贪心

D. Little Girl and Maximum XOR
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A little girl loves problems on bitwise operations very much. Here's one of them.

You are given two integers l and r. Let's consider the values of  for all pairs of integers a and b (l ≤ a ≤ b ≤ r). Your task is to find the maximum value among all considered ones.

Expression  means applying bitwise excluding or operation to integers x and y. The given operation exists in all modern programming languages, for example, in languages C++ and Java it is represented as "^", in Pascal — as «xor».

Input

The single line contains space-separated integers l and r (1 ≤ l ≤ r ≤ 1018).

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cincout streams or the %I64dspecifier.

Output

In a single line print a single integer — the maximum value of  for all pairs of integers ab (l ≤ a ≤ b ≤ r).

Examples
input
1 2
output
3
input
8 16
output
31
input
1 1
output
0



题意:  给定l和r, 求l-r之间的两个数x,y, 使得x^y有最大值.

分析: 贪心的思想, 从高位开始枚举, 当某一位l和r的二进制位不一样的时候, 那么这一位就肯定可以选到1, 让x这一位取1, y这一位取0, x后面的位全部取0,y后面的为全部取1, 两者异或就会出现二进制位上全部是1的最大值, 而且x跟y不会超范围, 这点举几个例子就看出来了.


#include<bits/stdc++.h>

#define inf 0x3f3f3f3f
using namespace std;

typedef long long ll;
typedef pair<int,int> pii;

const int N=100010,MOD=1e9+7;


int main()
{
    ll a,b;
    cin>>a>>b;
    int i=61;
    for(;i>=0;i--)
    {
        if((a&(1LL<<i)) ^ (b&(1LL<<i))) break;
    }
    ll ans=0;
    for(;i>=0;i--) ans |= 1LL<<i;
    cout<<ans;
    return 0;
}

 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值