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
  • 相关阅读:
    字典常用操作复习
    列表常用方法复习
    爬虫流程复习
    协程解决素数
    yield 复习
    多线程复习2
    多线程复习1
    异常 巩固3
    logging日志基础示例
    2019最新百度网盘不限速下载教程
  • 原文地址:https://www.cnblogs.com/liuyongliu/p/11212977.html
Copyright © 2011-2022 走看看