zoj 3418 Binary Number(二进制数)

注:将数字转换为二进制比较就可,主要是细节问题


Binary Number

Time Limit: 2 Seconds       Memory Limit: 65536 KB

For 2 non-negative integers x and y, f(xy) is defined as the number of different bits in the binary format of x and y. For example, f(2, 3)=1, f(0, 3)=2, f(5, 10)=4.

Now given 2 sets of non-negative integers A and B, for each integer b in B, you should find an integer a in A such that f(ab) is minimized. If there are more than one such integers in set A, choose the smallest one.

题意:f(x,y)表示将x,y转化为二进制后对应位数字不相同的个数,现在有A,B两个集合,对于集合B里的每个元素b,要从A集合中挑选出一个a使得f(a,b)最小,如果有多个,则输出最小的那个a。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
#define N 110
#define INF 0x3f3f3f3f
int a[25],b[25],A[N],B[N];
int getBinary(int x,int *a){
    int t=0;
    if(x==0) a[t++]=x;
    while(x){
        a[t++]=x%2;
        x/=2;
    }
    return t;
}
int f(int *a,int la,int *b,int lb){
    int t=0;
    for(int i=0,j=0;i<la||j<lb;i++,j++){
        if(i>=la) a[i]=0;
        else if(j>=lb) b[j]=0;
        if(a[i]!=b[j]) t++;
    }
    return t;
}
int main(){
    int m,n,T;
    scanf("%d",&T);
    while(T--){
        scanf("%d%d",&m,&n);
        for(int i=0;i<m;i++){
            scanf("%d",&A[i]);
        }
        for(int i=0;i<n;i++){
            scanf("%d",&B[i]);
        }
        for(int i=0;i<n;i++){
            int Min=INF,ans=INF;
            for(int j=0;j<m;j++){
                int la = getBinary(B[i],a);
                int lb = getBinary(A[j],b);
                int tmp = f(a,la,b,lb);
                if(tmp<Min){
                    Min = tmp;
                    ans=A[j];
                }else if(tmp==Min){
                    if(ans>A[j]) ans=A[j];
                }
            }
            printf("%d\n",ans);
        }
    }
    return 0;
}


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值