HDU2441ACM(Array Complicated Manipulation)题解数论

ACM(Array Complicated Manipulation)

Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 204    Accepted Submission(s): 48

Problem Description
Given an infinite array of integers 2,3,.... Now do some operations on it.

The operation is to choose a minimum number from the array which is never been chosen, then change the status of its multiples excluding itself, i.e remove the multiples of the chosen number if they are in the array , otherwise add it to the array.keep the order after change.

For instance, the first step, choose number 2, change the status of 4, 6, 8, 10... They are all removed from the array. The second step, choose 3, change the status of 6, 9, 12, 15...

Pay attention: 9 and 15 are removed from the array while 6 and 12 are added to the array.
 

 

Input
Every line contains an integer n. The zero value for n indicates the end of input.
 

 

Output
Print "yes" or "no" according whether n is in the array.

 

 

Sample Input
  
  
2 30 90 0
 

 

Sample Output
  
  
yes yes no
Hint
The number n never has a prime factor greater than 13000000, but n may be extremely large.
 

 

Source
 

 

Recommend
gaojie
 
 
我先打表看小数据找规律
判断是否有重复的素因子
当m的素因子没有重复的时候,
能改变m状态的数的个数有c(n,1)+c(n,2)+...+c(n,n-1)=2^n-c(n,0)-c(n,n)=2^n-2是一个偶数,改变偶数次回到原状态。
c(n,n)表示从m的n种素因子中选n种,当m的素因子没有重复的时候,选n个乘积就等于m了,所以不能选n个;
当m有重复素因子时,可以选n个不同的素因子,此时他们的乘积小于m,所以能选n个。
当m有重复素因子时,能改变n状态的数的个数加上c(n,n)=1变成了奇数,
所以状态改变了,数m不存在了。
比如30=2*3*5 能改变它状态的数有(2,3,5),(6,10,15)偶数个,所以30存在
60=2*2*3*5 能改变它状态的数有(2,3,5),(6,10,15),(30)奇数个,所以60不存在
n表示m的素因子种类数。
注意1和高精度
 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值