Bit Mask uva+贪心

Bit Mask

Time Limit

1 Second

In bit-wise expression, mask is a common term. You can get a certain bit-pattern using mask. For example, if you want to make first 4 bits of a 32-bit number zero, you can use 0xFFFFFFF0 as mask and perform a bit-wise AND operation. Here you have to find such a bit-mask.

Consider you are given a 32-bit unsigned integer N. You have to find a mask M such that L ≤ M ≤ U and N OR M is maximum. For example, if is 100 and L = 50, U = 60 then M will be 59 and N OR M will be 127 which is maximumIf several value of M satisfies the same criteria then you have to print the minimum value of M.

Input
Each input starts with 3 unsigned integers NLU where L ≤ U. Input is terminated by EOF.

Output
For each input, print in a line the minimum value of M, which makes N OR M maximum.

Look, a brute force solution may not end within the time limit.

Sample Input

Output for Sample Input

100 50 60
100 50 50
100 0 100
1 0 100
15 1 15

59
50
27
100
1



解决方案:完全想不不出来啊,看来还是要多练。。。。。既然他是32位的无符号数字,可以把它分解成二进制,存入数组中,然后逐位枚举。

代码:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
long long N,L,R;
int  BitN[33];
int  result[33];
long long S;
long long p(long long i){
     long long sum=1;
     for(long long j=1;j<i;j++){
        sum*=2;
     }
   return sum;
}
long long Sum(){
      long long sum=0;
      for(long long i=1;i<=32;i++){
        sum+=result[i]*p(i);
      }
      return sum;
}
int main(){
    while(~scanf("%I64d%I64d%I64d",&N,&L,&R)){
      S=1;

      long long NN=N;
      memset(result,0,sizeof(result));
      for(long long i=1;i<=32;i++){
        BitN[i]=NN&S;
        NN>>=(1);
      }

      for(long long i=32;i>=1;i--){
      if(BitN[i]==0){
            result[i]=1;
            if(Sum()>R){
                result[i]=0;
            }
            else result[i]=1;

      }
      else {
        long long temp=Sum();
        long long x=temp;
        long long y=temp+p(i)-1;///通过对该位的所有后面的位都置1来判断
        if(y<L)///若该位的所有后面的位都置1所得的结果比L小,那么此位必须是1
            result[i]=1;

        }///判断该位上是0还是1,有时候1是必须的,应为这个不为1,那么得到的结果永远不会在L之上。

      }
      cout<<Sum()<<endl;
      }
  return 0;
     }






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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值