lightoj 1042 - Secret Origins 【数学】

本文介绍了一道算法题的解决方法,题目要求找出紧接给定整数之后,二进制中1的数量相同的最小整数。通过分析区间内1数量的变化规律,采用高效算法实现解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目链接:lightoj 1042 - Secret Origins

1042 - Secret Origins
PDF (English) Statistics Forum
Time Limit: 0.5 second(s) Memory Limit: 32 MB
This is the tale of Zephyr, the greatest time traveler the world will never know. Even those who are aware of Zephyr’s existence know very little about her. For example, no one has any clue as to which time period she is originally from.

But we do know the story of the first time she set out to chart her own path in the time stream. Zephyr had just finished building her time machine which she named - “Dokhina Batash”. She was making the final adjustments for her first trip when she noticed that a vital program was not working correctly. The program was supposed to take a number N, and find what Zephyr called its Onoroy value.

The Onoroy value of an integer N is the number of ones in its binary representation. For example, the number 13 (11012) has an Onoroy value of 3. Needless to say, this was an easy problem for the great mind of Zephyr. She solved it quickly, and was on her way.

You are now given a similar task. Find the first number after N which has the same Onoroy value as N.

Input
Input starts with an integer T (≤ 65), denoting the number of test cases.

Each case begins with an integer N (1 ≤ N ≤ 109).

Output
For each case of input you have to print the case number and the desired result.

Sample Input
Output for Sample Input
5
23
14232
391
7
8
Case 1: 27
Case 2: 14241
Case 3: 395
Case 4: 11
Case 5: 16

题意:找到离n最近的数m满足n和m的二进制中1的个数相同。

思路:[x, x + lowbit(x)]区间里面 1的个数是非升序的。

AC代码:

#include <iostream>
#include <cstdio>
#include<math.h>
#include <algorithm>
using namespace std;
typedef long long LL;
const int MAXN = 1e6 +10;
const int INF = 0x3f3f3f3f;
int bit[40];
int lowbit(int x) {
    return x & (-x);
}
void getbit(int n) {
    for(int i = 30; i >= 0; i--) {
        if(n & (1<<i)) bit[i] = 1;
        else bit[i] = 0;
    }
}
int Count(int n) {
    int cnt = 0;
    while(n) {
        cnt += (n & 1);
        n >>= 1;
    }
    return cnt;
}
int main()
{
    int t, kcase = 1;
    scanf("%d", &t);
    while(t--) {
        int n; scanf("%d", &n);
        int num = Count(n);
        n += lowbit(n); getbit(n); int now = Count(n);
        while(now != num) {
            for(int i = 0; i <= 30; i++) {
                if(bit[i] == 0) {
                    now++; bit[i] = 1;
                    n |= (1<<i); break;
                }
            }
            //cout << now << ' ' << n << endl;
        }
        printf("Case %d: %d\n", kcase++, n);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值