• [POJ 1365] Prime Land


    Prime Land
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 3211   Accepted: 1473

    Description

    Everybody in the Prime Land is using a prime base number system. In this system, each positive integer x is represented as follows: Let {pi}i=0,1,2,... denote the increasing sequence of all prime numbers. We know that x > 1 can be represented in only one way in the form of product of powers of prime factors. This implies that there is an integer kx and uniquely determined integers ekx, ekx-1, ..., e1, e0, (ekx > 0), that  The sequence 
    (ekx, ekx-1, ... ,e1, e0) 

    is considered to be the representation of x in prime base number system. 
    It is really true that all numerical calculations in prime base number system can seem to us a little bit unusual, or even hard. In fact, the children in Prime Land learn to add to subtract numbers several years. On the other hand, multiplication and division is very simple. 
    Recently, somebody has returned from a holiday in the Computer Land where small smart things called computers have been used. It has turned out that they could be used to make addition and subtraction in prime base number system much easier. It has been decided to make an experiment and let a computer to do the operation ``minus one''. 
    Help people in the Prime Land and write a corresponding program. 
    For practical reasons we will write here the prime base representation as a sequence of such pi and ei from the prime base representation above for which ei > 0. We will keep decreasing order with regard to pi. 

    Input

    The input consists of lines (at least one) each of which except the last contains prime base representation of just one positive integer greater than 2 and less or equal 32767. All numbers in the line are separated by one space. The last line contains number 0.

    Output

    The output contains one line for each but the last line of the input. If x is a positive integer contained in a line of the input, the line in the output will contain x - 1 in prime base representation. All numbers in the line are separated by one space. There is no line in the output corresponding to the last ``null'' line of the input.

    Sample Input

    17 1
    5 1 2 1
    509 1 59 1
    0

    Sample Output

    2 4
    3 2
    13 1 11 1 7 1 5 1 3 1 2 1

    Source

    Central Europe 1997
     
    水、素数筛选和合数分解
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    #define ll long long
    #define N 100000
    
    ll tot;
    bool isprime[N+10];
    ll prime[N+10]; //1~tot-1
    void getprime() //复杂度:O(n)
    {
        tot=0;
        memset(isprime,true,sizeof(isprime));
        isprime[0]=isprime[1]=false;
        for(ll i=2;i<=N;i++)
        {
            if(isprime[i]) prime[tot++]=i;
            for(ll j=0;j<tot;j++)
            {
                if(i*prime[j]>N) break;
                isprime[i*prime[j]]=false;
                if(i%prime[j]==0)
                {
    break;
                }
            }
        }
    }
    ll fatcnt;
    ll factor[N][2]; //0~fatcnt-1
    ll getfactors(ll x) //x>1
    {
        fatcnt=0;
        ll tmp=x;
        for(ll i=0;prime[i]<=tmp/prime[i];i++)
        {
            factor[fatcnt][1]=0;
            if(tmp%prime[i]==0)
            {
                factor[fatcnt][0]=prime[i];
                while(tmp%prime[i]==0)
                {
                    factor[fatcnt][1]++;
                    tmp/=prime[i];
                }
                fatcnt++;
            }
        }
        if(tmp!=1)
        {
            factor[fatcnt][0]=tmp;
            factor[fatcnt++][1]=1;
        }
        return fatcnt;
    }
    ll pow(ll a,ll b)
    {
        ll ret=1;
        while(b)
        {
            if(b&1) ret*=a;
            a=a*a;
            b>>=1;
        }
        return ret;
    }
    int main()
    {
        getprime();
        ll num,a,b,i;
        char op;
        while(scanf("%lld",&a),a)
        {
            scanf("%lld%c",&b,&op);
            num=pow(a,b);
            if(op!='
    ')
            {
                while(scanf("%lld%lld%c",&a,&b,&op))
                {
                    num*=pow(a,b);
                    if(op=='
    ') break;
                }
            }
            getfactors(num-1);
            for(i=fatcnt-1;i>0;i--) printf("%lld %lld ",factor[i][0],factor[i][1]);
            printf("%lld %lld
    ",factor[i][0],factor[i][1]);
        }
        return 0;
    }
    趁着还有梦想、将AC进行到底~~~by 452181625
  • 相关阅读:
    python 抓取网页
    Vim XDebug调试PHP php远程调试
    10 条 nmap 技巧
    Linux修改文件及文件夹权限
    mysql 常用命令 汇总
    VS2010打开过多的IntelliTrace.exe进程导致虚拟内存不足的解决办法
    黄聪:MYSQL远程连接失败:ERROR 1130: mysql 1130连接错误的有效解決方法
    黄聪:WordPress搬家更换域名教程
    黄聪:使用 ALinq 实现 Linq to MySQL【转】
    黄聪:Filezilla 二进制上传设定
  • 原文地址:https://www.cnblogs.com/hate13/p/4431259.html
Copyright © 2020-2023  润新知