UVa1635-Irrelevant Elements (prime factor decomposition)

Source: Internet
Author: User
Tags integer numbers

UVa1635-Irrelevant Elements (prime factor decomposition)
Young cryptoanalyst Georgie is investigating different schemes of generating random integer numbers ranging from 0M-1. He thinks that standard random number generators are not good enough, so he has been Ted his own scheme that is intended to bring more randomness into the generated numbers. First, Georgie choosesNAnd generatesNRandom integer numbers ranging from 0M-1. Let the numbers generated beA1,A2 ,...,AN. After that Georgie calculates the sums of all pairs of adjacent numbers, and replaces the initial array with the array of sums, thus gettingN-1 numbers:A1 +A2,A2 +A3 ,...,AN-1 +AN. Then he applies the same procedure to the new array, gettingN-2 numbers. The procedure is repeated until only one number is left. This number is then taken moduloM. That gives the result of the generating procedure. georgie has proudly presented this scheme to his computer science teacher, but was pointed out that the scheme has implements drawbacks. one important drawback is the fact that the result of the procedure sometimes does not even depend on some of the initially generated numbers. for example, ifN= 3 andM= 2, then the result does not depend onA2. Now Georgie wants to investigate this phenomenon. He calltheI-Th element of the initial array irrelevant if the result of the generating procedure does not depend onAI. He considers variousNAndMAnd wonders which elements are irrelevant for these parameters. Help him to find it out. Input file contains several datasets. Each datasets hasNAndM(1N100, 2M109) in a single line. Output On the first line of the output for each dataset print the number of irrelevant elements of the initial array for givenNAndM. On the second line print all suchIThatI-Th element is irrelevant. Numbers on the second line must be printed in the ascending order and must be separated by spaces. Sample Input

3 2
Sample Output
12

The sum of the entire formula can be reduced to sigma (C (n-1, I-1) * ai)

Idea: As long as Judge C (n-1, I-1) can be m divisible.

The solution is to first break down the prime factor of m and then calculate 1 !~ (N-1 )! Number of prime factors containing m

C (n-1, I-1) = (n-1 )! /(I-1 )! * (N-I )!)

You only need to determine whether the number of remaining prime factors is greater than or equal to the number of any prime factor of m.


#include 
 
  #include 
  
   #include 
   
    #include 
    
     #include 
     
      #include #include 
      
       #include 
       
        using namespace std;typedef long long LL;const int maxp = 40000+10;const int maxn = 100000+10;int n,m;bool isPrime[maxp];vector
        
          ret,prime,hp,cnt,tmp;vector
         
           g[maxn];void getPrime(){ memset(isPrime,true,sizeof isPrime); for(int i = 2; i < maxp; i++){ if(isPrime[i]){ prime.push_back(i); for(int j = i+i;j < maxp; j += i){ isPrime[j] = false; } } }}void getDigit(){ int tk = m; for(int i = 0; i < prime.size() && prime[i]*prime[i] <= tk; i++){ if(tk%prime[i]==0){ int k = 0; hp.push_back(prime[i]); while(tk%prime[i]==0){ tk /= prime[i]; k++; } cnt.push_back(k); } } if(tk>1){ hp.push_back(tk); cnt.push_back(1); }}void init(){ cnt.clear(); hp.clear(); ret.clear(); getDigit(); for(int i = 0; i <= n-1; i++) g[i].clear(); for(int i = 0; i <= n-1; i++) { for(int j = 0; j < hp.size(); j++){ int d = 0,t = i; while(t) { d += t/hp[j]; t /= hp[j]; } g[i].push_back(d); } }}void solve(){bool miden = false; for(int i = 2; i <= (n-1)/2+1; i++){ bool flag = true; for(int j = 0; j < hp.size(); j++){ int d = g[n-1][j]-g[i-1][j]-g[n-i][j]; if(d < cnt[j]){ flag = false; break; } } if(flag) {ret.push_back(i);if(i==(n-1)/2+1 && (n&1)) miden = true; } } tmp.clear(); tmp = ret; if(n&1){ int i; if(miden) i = tmp.size()-2; else i = tmp.size()-1; for(; i >= 0; i--){ ret.push_back(n+1-tmp[i]); } }else{ for(int i = tmp.size()-1; i >= 0; i--){ ret.push_back(n+1-tmp[i]); } } printf("%d\n",ret.size()); if(ret.size()){ printf("%d",ret[0]); for(int i = 1; i < ret.size(); i++){ printf(" %d",ret[i]); } } puts("");}int main(){ //freopen("test.txt","r",stdin); getPrime(); while(~scanf("%d%d",&n,&m)){ init(); solve(); } return 0;}
         
        
       
      
     
    
   
  
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.