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.
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 noHintThe number n never has a prime factor greater than 13000000, but n may be extremely large.
Source
Recommend
gaojie
我先打表看小数据找规律
判断是否有重复的素因子
当m的素因子没有重复的时候,
当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有重复素因子时,能改变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和高精度
本文介绍了一道名为ArrayComplicatedManipulation的ACM题目,通过对无限整数数组的操作,探讨如何判断一个特定数值是否存在于经过一系列复杂变换后的数组中。通过分析素因子及其组合的变化来确定数值的状态。

被折叠的 条评论
为什么被折叠?



