Codeforces Contest 1110 problem C Meaningless Operations——找区间内两个数的与和异或的最大gcd

本文主要是介绍Codeforces Contest 1110 problem C Meaningless Operations——找区间内两个数的与和异或的最大gcd,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Can the greatest common divisor and bitwise operations have anything in common? It is time to answer this question.

Suppose you are given a positive integer a. You want to choose some integer b from 1 to a−1 inclusive in such a way that the greatest common divisor (GCD) of integers a⊕b and a&b is as large as possible. In other words, you’d like to compute the following function:

f(a)=max0<b<agcd(a⊕b,a&b).
Here ⊕ denotes the bitwise XOR operation, and & denotes the bitwise AND operation.

The greatest common divisor of two integers x and y is the largest integer g such that both x and y are divided by g without remainder.

You are given q integers a1,a2,…,aq. For each of these integers compute the largest possible value of the greatest common divisor (when b is chosen optimally).

Input
The first line contains an integer q (1≤q≤103) — the number of integers you need to compute the answer for.

After that q integers are given, one per line: a1,a2,…,aq (2≤ai≤225−1) — the integers you need to compute the answer for.

Output
For each integer, print the answer in the same order as the integers are given in input.

Example
inputCopy
3
2
3
5
outputCopy
3
1
7
Note
For the first integer the optimal choice is b=1, then a⊕b=3, a&b=0, and the greatest common divisor of 3 and 0 is 3.

For the second integer one optimal choice is b=2, then a⊕b=1, a&b=2, and the greatest common divisor of 1 and 2 is 1.

For the third integer the optimal choice is b=2, then a⊕b=7, a&b=0, and the greatest common divisor of 7 and 0 is 7.

题意:

给你一个数a,你要在1到a-1之间找一个数,使得gcd(a&b,a⊕b)最大。

题解:

数学的1500难度对我来说就相当于1700了,想了一会才想到怎么做。。首先第一种不是 2 k − 1 2^k-1 2k1的数,很明显可以从note里面看出来就是 2 k − 1 2^k-1 2k1,因为我们可以找到一个数b,使得b&a=0,b|a= 2 n − 1 2^n-1 2n1,那么就是这个数了,还有一种是找到他的最大因子。

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int N=1e5+5;
int p[N],np[N],cnt;
void init()
{for(ll i=2;i<N;i++){if(!np[i]){p[++cnt]=i;for(ll j=i*i;j<N;j+=i)np[j]=1;}}
}
int main()
{init();int q;scanf("%d",&q);while(q--){int a;scanf("%d",&a);int ret=1,cnt=0;while(ret<=a)ret*=2,cnt++;if(ret-1==a){int ans=a;for(int i=1;i<=cnt&&p[i]<=sqrt(a);i++){if(a%p[i]==0){ans=p[i];break;}}printf("%d\n",a/ans);}elseprintf("%d\n",ret-1);}return 0;
}

这篇关于Codeforces Contest 1110 problem C Meaningless Operations——找区间内两个数的与和异或的最大gcd的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/881243

相关文章

C语言实现两个变量值交换的三种方式

《C语言实现两个变量值交换的三种方式》两个变量值的交换是编程中最常见的问题之一,以下将介绍三种变量的交换方式,其中第一种方式是最常用也是最实用的,后两种方式一般只在特殊限制下使用,需要的朋友可以参考下... 目录1.使用临时变量(推荐)2.相加和相减的方式(值较大时可能丢失数据)3.按位异或运算1.使用临时

java两个List的交集,并集方式

《java两个List的交集,并集方式》文章主要介绍了Java中两个List的交集和并集的处理方法,推荐使用Apache的CollectionUtils工具类,因为它简单且不会改变原有集合,同时,文章... 目录Java两个List的交集,并集方法一方法二方法三总结java两个List的交集,并集方法一

Python如何计算两个不同类型列表的相似度

《Python如何计算两个不同类型列表的相似度》在编程中,经常需要比较两个列表的相似度,尤其是当这两个列表包含不同类型的元素时,下面小编就来讲讲如何使用Python计算两个不同类型列表的相似度吧... 目录摘要引言数字类型相似度欧几里得距离曼哈顿距离字符串类型相似度Levenshtein距离Jaccard相

使用Navicat工具比对两个数据库所有表结构的差异案例详解

《使用Navicat工具比对两个数据库所有表结构的差异案例详解》:本文主要介绍如何使用Navicat工具对比两个数据库test_old和test_new,并生成相应的DDLSQL语句,以便将te... 目录概要案例一、如图两个数据库test_old和test_new进行比较:二、开始比较总结概要公司存在多

C#比较两个List集合内容是否相同的几种方法

《C#比较两个List集合内容是否相同的几种方法》本文详细介绍了在C#中比较两个List集合内容是否相同的方法,包括非自定义类和自定义类的元素比较,对于非自定义类,可以使用SequenceEqual、... 目录 一、非自定义类的元素比较1. 使用 SequenceEqual 方法(顺序和内容都相等)2.

锐捷和腾达哪个好? 两个品牌路由器对比分析

《锐捷和腾达哪个好?两个品牌路由器对比分析》在选择路由器时,Tenda和锐捷都是备受关注的品牌,各自有独特的产品特点和市场定位,选择哪个品牌的路由器更合适,实际上取决于你的具体需求和使用场景,我们从... 在选购路由器时,锐捷和腾达都是市场上备受关注的品牌,但它们的定位和特点却有所不同。锐捷更偏向企业级和专

如何提高Redis服务器的最大打开文件数限制

《如何提高Redis服务器的最大打开文件数限制》文章讨论了如何提高Redis服务器的最大打开文件数限制,以支持高并发服务,本文给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录如何提高Redis服务器的最大打开文件数限制问题诊断解决步骤1. 修改系统级别的限制2. 为Redis进程特别设置限制

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu 1754 I Hate It(线段树,单点更新,区间最值)

题意是求一个线段中的最大数。 线段树的模板题,试用了一下交大的模板。效率有点略低。 代码: #include <stdio.h>#include <string.h>#define TREE_SIZE (1 << (20))//const int TREE_SIZE = 200000 + 10;int max(int a, int b){return a > b ? a :

uva 10025 The ? 1 ? 2 ? ... ? n = k problem(数学)

题意是    ?  1  ?  2  ?  ...  ?  n = k 式子中给k,? 处可以填 + 也可以填 - ,问最小满足条件的n。 e.g k = 12  - 1 + 2 + 3 + 4 + 5 + 6 - 7 = 12 with n = 7。 先给证明,令 S(n) = 1 + 2 + 3 + 4 + 5 + .... + n 暴搜n,搜出当 S(n) >=