poj3421 X-factor Chains——分解质因数

题目:http://poj.org/problem?id=3421

好久没有独立A题了...做点水题还是有助于提升自信心的;

这题就是把 x 质因数分解,质因数指数的和 sum 就是最长的长度,因为每次至少乘一个质因数;

排列方式就是从 sum 个位置里给第一种质因数选几个位置,再在剩下的里面给第二种质因数选几个位置...

也就是 ans = ∏(1<=i<=cnt) C(n,pc[i]),n -= pc[i],其中 cnt 是质因数(种类)个数,pc 是每种质因数的指数,n 就是目前剩下几个位置。

代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
typedef long long ll;
int x,p[25],pc[25],cnt;
void divide(int n)
{
    cnt=0;
    memset(pc,0,sizeof pc);
    for(int i=2;i*i<=n;i++)
        if(n%i==0)
        {
            p[++cnt]=i;
            while(n%i==0)pc[cnt]++,n/=i;
        }
    if(n>1)p[++cnt]=n,pc[cnt]=1;
}
ll C(int n,int m)
{
    if(n<m)return 0;
    m=min(m,n-m);
    ll a=1,b=1;
    for(int i=n-m+1;i<=n;i++)a*=i;
    for(int i=2;i<=m;i++)b*=i;
    return a/b;
}
int main()
{
    while(~scanf("%d",&x))
    {
        divide(x);
        int sum=0; ll ans=1;
        for(int i=1;i<=cnt;i++)sum+=pc[i];
        int n=sum;
        for(int i=1;i<=cnt;i++)
        {
            ans*=C(n,pc[i]);
            n-=pc[i];
        }
        printf("%d %lld\n",sum,ans);
    }
    return 0;
}

原文地址:https://www.cnblogs.com/Zinn/p/9264971.html

时间: 2024-10-12 20:36:44

poj3421 X-factor Chains——分解质因数的相关文章

HDU 5428 [The Factor] 分解质因数

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5428 题目大意:给你若干个整数,让你输出这些数乘积的一个最小因子,并且这个因子至少有3个因子. 关键思想:分解质因数,我们要找的其实就是两个最小质因数的乘积.我的算法关键就是维护最小的两个质因数. 代码如下: #include <iostream> #include <cmath> #include <cstdio> #include <algorithm> u

分解质因数模板

/*==================================================*| 分解质因数,可能有些地方需要改为long long \*==================================================*/ const int MAXN=100010; int prm[MAXN+1]; bool is[MAXN+1]; int getprm(int n){ int i, j, k = 0; int s, e = (int)(sqrt

分解质因数算法

分解质因数算法 1.从N开始递减,找到满足 : n%i ==0 && n是素数 -> result2.存result到数组,递归执行(n/result) var result = new Array(); var factor = function f(n){ if(n == 1){return ;} var n1 = n; while(n1>1){ if(isPrime(n1) && n % n1 == 0) {break;} n1--; } if(n1 ==

大素数测试和分解质因数

Prime Test http://poj.org/problem?id=1811 1 #include<cstdio> 2 #include<algorithm> 3 using namespace std; 4 typedef __int64 LL; 5 LL mulmod(LL a,LL b,LL c) { //ret=(a*b)%c 6 LL ret=0; 7 for(; b; a=(a<<1)%c,b>>=1) { 8 if(b&1) {

The largest prime factor(最大质因数)

1. 问题: The prime factors of 13195 are 5, 7, 13 and 29.What is the largest prime factor of the number 600851475143 ? 2. 解法(by java in Eclipse) 1 package com.lun.alrithmetic; 2 /* 3 * Q1: what's the primary factor? (1 2 3) 4 * Q2: i & i+2ne能否遍历出所有质数 5

hdoj-1164-Eddy&#39;s research I【分解质因数】

Eddy's research I Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7537 Accepted Submission(s): 4579 Problem Description Eddy's interest is very extensive, recently he is interested in prime number

java编程题 --分解质因数

package Solve; import java.util.Scanner; public class Solve { static Scanner scan = new Scanner(System.in); public static void main(String[] args) { System.out.println("请输入一个正整数:"); int num = scan.nextInt(); System.out.print(num + " = "

POJ 2773 Happy 2006 (分解质因数+容斥+二分 或 欧几里德算法应用)

Happy 2006 Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 10309   Accepted: 3566 Description Two positive integers are said to be relatively prime to each other if the Great Common Divisor (GCD) is 1. For instance, 1, 3, 5, 7, 9...are a

codevs 1792 分解质因数

1792 分解质因数 题目描述 Description 编写一个把整数N分解为质因数乘积的程序. 输入描述 Input Description 输入一个整数 N 输出描述 Output Description 输出 分解质因数 .拆成几个质数相乘的形式,质数必须从小到大相乘 样例输入 Sample Input 756 样例输出 Sample Output 756=2*2*3*3*3*7 #include<cstdio> #include<cmath> #include<str