HDU2441ACM(Array Complicated Manipulation)题解数论

来源:互联网 发布:淘宝我打软件 编辑:程序博客网 时间:2024/05/22 08:27

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
230900
 

 

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

 

Source
2008 Asia Harbin Regional Contest Online
 

 

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和高精度