链接:https://ac.nowcoder.com/acm/contest/5929/G
来源:牛客网
多多在老师的帮助下学会了异或运算,老师问了他这样一个问题:假设存在一个正整数数列1,2,3,···,N - 1,N,你能从中选出两个数(两个数可以相同),使它们异或后的值最大吗?异或后的最大值是多少?多多被难住了,请你帮助他。
输入描述:
输入一个正整数N (1 ≤ N ≤ 1018)
输出描述:
输出一个数,为1 ~ N中两个数异或后的最大值
示例1
输入
复制
10
输出
复制
15
示例2
输入
复制
1024
输出
复制
2047
示例3
输入
复制
2047
输出
复制
2047
\
题意 : 从
[
1
,
n
]
[1,n]
[1,n] 里面选2
个数字xor
,使得结果最大
- 很明显我们直接选
n
和[1~n]
里的一个数字亦或即可得到最大值 - 如果
n=10100101
则[1~n]
一定可以找到01011010
- 他们亦或后一定得到最大值
11111111
- 所以我们直接找
n
的最左边的1
的位置idx+1
- a n s = ( 1 < < ( i d x + 1 ) ) − 1 ans=(1<<(idx+1))-1 ans=(1<<(idx+1))−1
for( ; cin>>n; ) {
if(n == 1) {
printf("0\n");
continue ;
}
int idx = 0;
while(n > 0) idx ++, n >>= 1;
printf("%llu\n", (1llu<<idx)-1);
}
完整代码
#define debug
#ifdef debug
#include <time.h>
#include "/home/majiao/mb.h"
#endif
#include <iostream>
#include <algorithm>
#include <vector>
#include <string.h>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <math.h>
#define MAXN ((int)1e5+7)
#define int long long
#define INF (0x7f7f7f7f)
#define fori(lef, rig) for(int i=lef; i<=rig; i++)
#define forj(lef, rig) for(int j=lef; j<=rig; j++)
#define fork(lef, rig) for(int k=lef; k<=rig; k++)
#define QAQ (0)
using namespace std;
typedef unsigned long long ll; ll q_pow(ll a, ll n) { ll res = 1; while (n) { if (n & 1) res = res * a; a = (a * a); n >>= 1; } return res; }
#define show(x...) \
do { \
cout << "\033[31;1m " << #x << " -> "; \
err(x); \
} while (0)
void err() { cout << "\033[39;0m" << endl; }
template<typename T, typename... A>
void err(T a, A... x) { cout << a << ' '; err(x...); }
namespace FastIO {
char print_f[105];
void read() { }
void print() { putchar('\n'); }
template <typename T, typename... T2>
inline void read(T &x, T2 &... oth) {
x = 0;
char ch = getchar();
ll f = 1;
while (!isdigit(ch)) {
if (ch == '-') f *= -1;
ch = getchar();
}
while (isdigit(ch)) {
x = x * 10 + ch - 48;
ch = getchar();
}
x *= f;
read(oth...);
}
template <typename T, typename... T2>
inline void print(T x, T2... oth) {
int p3=-1;
if(x<0) putchar('-'), x=-x;
do{
print_f[++p3] = x%10 + 48;
} while(x/=10);
while(p3>=0) putchar(print_f[p3--]);
putchar(' ');
print(oth...);
}
} // namespace FastIO
using FastIO::print;
using FastIO::read;
int n, m, Q, K;
signed main() {
#ifdef debug
freopen("test", "r", stdin);
// freopen("out_main", "w", stdout);
clock_t stime = clock();
#endif
for( ; cin>>n; ) {
if(n == 1) {
printf("0\n");
continue ;
}
int idx = 0;
while(n > 0) idx ++, n >>= 1;
printf("%llu\n", (1llu<<idx)-1);
}
#ifdef debug
clock_t etime = clock();
printf("rum time: %lf 秒\n",(double) (etime-stime)/CLOCKS_PER_SEC);
#endif
return 0;
}
/**
]]` ,]]` ]]]` ]]]`.]]] ,]]]]]]. ]]]. ]]].
@@@@` =@@^ =@@@ =@@/ .@@@ =@@@@@@@@\. @@@. /@@@@.
@@@@@\ =@@^ =@@^ .@@@. .@@@ =@@^ ,@@@ @@@. =@@`@@@
@@@.\@@/@@^ \@@` /@@` .@@@ =@@^ @@@. @@@. =@@^ ,@@\.
@@@ =@@@@^ .@@@=@@^ .@@@ =@@^ =@@@ @@@. .@@@@@@@@@^
@@@ ,@@@^ ,@@@@^ .@@@ =@@@@@@@@/. @@@. @@@` @@@`
[[[ .[[` ,[[[ .[[[ ,[[[[[[. [[[.,[[` ,[[[
*/