码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces - 151C 质因子分解

时间:2017-12-09 13:10:57      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:log   typedef   main   using   type   std   memset   syn   i++   

显然只需要能跑到第二个因子就赢了
需要特判非平凡因子
常数优化:不用求出所有因子,跑完第二个素数就行了

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 233;
ll n,cnt;
ll prime[maxn],num[maxn];
void chai(ll a){
    cnt=0;
    memset(num,0,sizeof num);
    memset(prime,0,sizeof prime);
    for(ll i = 2; i*i <= a; i++){
        if(cnt>2) break;
        if(a%i==0){
            cnt++;
            prime[cnt]=i;num[cnt]++;
            a/=i;
            while(a%i==0){
                num[cnt]++;
                a/=i;
            }
        }
    }
}
int main(){
    ios::sync_with_stdio(0);
    while(cin>>n){
        chai(n);
        if((cnt>=2)||(cnt==1&&num[cnt]>=2)||cnt==0){
            if(cnt==1&&num[cnt]==2&&n==prime[cnt]*prime[cnt]){
                cout<<2<<endl;
                continue; 
            }
            cout<<1<<endl;
            if(cnt==0) cout<<0<<endl;
            else if(num[1]>1) cout<<prime[1]*prime[1]<<endl;
            else cout<<prime[1]*prime[2]<<endl;
        }
        else cout<<2<<endl;
    }
}

Codeforces - 151C 质因子分解

标签:log   typedef   main   using   type   std   memset   syn   i++   

原文地址:http://www.cnblogs.com/caturra/p/8010961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!