zoukankan      html  css  js  c++  java
  • Consecutive Factors(求n的连续约数)

    时间限制 1000 ms 内存限制 65536 KB 代码长度限制 100 KB 判断程序 Standard (来自 小小)

    题目描述

    Among all the factors of a positive integer N, there may exist several consecutive numbers.  For example, 630 can be factored as 3*5*6*7, where 5, 6, and 7 are the three consecutive numbers.  Now given any positive N, you are supposed to find the maximum number of consecutive factors, and list the smallest sequence of the consecutive factors.

    输入描述:

    Each input file contains one test case, which gives the integer N (1<n<2
    31).

    输出描述:

    For each test case, print in the first line the maximum number of consecutive factors.  Then in the second line, print the smallest sequence of the consecutive factors in the format "factor[1]*factor[2]*...*factor[k]", where the factors are listed in increasing order, and 1 is NOT included.

    输入例子:

    630

    输出例子:

    3
    5*6*7

    分析:start只需循环到sqrt(n)处,否则超时

    #include <iostream>
    #include <vector>
    #include <queue>
    #include <map>
    #include <stack>
    #include <list>
    #include <bits/stdc++.h>
    using namespace std;
    #define ll long long
    const int inf=0x3f3f3f3f;
    
    int main()
    {
        std::ios::sync_with_stdio(false);
        std::cin.tie(0);
        int su[20];
        su[1]=2;
        for(int k=2;k<=12;k++){
            su[k]=su[k-1]*(k+1);
        }
        
        ll n;
        cin>>n;
        int t=0;
        int ans;
        
        for(int k=1;k<=12;k++){
            if(n<su[k]) break;
            ll sum=su[k];
            for(int i=2;i<=sqrt(n);i++){
                if( n%sum==0 ){
                    t=k;
                    ans=i;
                    break;
                }
                sum/=i;
                sum*=(i+k);
                if(sum>n) break;
            }
        }
        if(t==0){
            cout<<1<<endl<<n<<endl;
            return 0;
        }
        cout<<t<<endl;
        for(int i=1;i<t;i++){
            cout<<ans+i-1<<"*";
        }
        if(t)
        cout<<ans+t-1<<endl;
        return 0;
    }
    View Code
  • 相关阅读:
    [软件逆向]实战Mac系统下的软件分析+Mac QQ和微信的防撤回
    测试Storm的多源头锚定
    理解Storm可靠性消息
    Storm处理流程, 基本参数配置
    解决Storm 和yarn 8080 端口冲突
    TridentState分析
    Trident中 FixedBatchSpout分析
    Java序列简单使用
    JVM 监控以及内存分析
    Zookeeper入门开发demo
  • 原文地址:https://www.cnblogs.com/liuyongliu/p/11212977.html
Copyright © 2011-2022 走看看