日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

1096 Consecutive Factors (20 分)_24行代码AC

發布時間:2024/2/28 52 豆豆
生活随笔 收集整理的這篇文章主要介紹了 1096 Consecutive Factors (20 分)_24行代码AC 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

立志用最少的代碼做最高效的表達


PAT甲級最優題解——>傳送門


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.

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

Output Specification:
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.

Sample Input:
630

Sample Output:
3
567


分析:

  • 既然某數能分解為幾個數字相乘,則這些數字必定是其因子。
  • 在其因子中, 如果因子大于該數/2,則因子必定不連續,因此不需考慮。所以將范圍縮減為sqrt(n)
  • 基于前兩點設計算法即可。

#include<bits/stdc++.h> using namespace std; int main() {int n; cin >> n;int sqrt_n = sqrt(n);vector<int>m, tmp_v;for(int i = 2; i <= sqrt_n; i++) {int cp_i = i, sum = i;while(n % sum == 0 && cp_i <= sqrt_n) {tmp_v.push_back(cp_i);cp_i++;sum *= cp_i;}if(tmp_v.size() > m.size()) m = tmp_v;tmp_v.clear();}if(m.size() == 0) cout << 1 << '\n' << n;else {cout << m.size();for(int i = 0; i < m.size(); i++) cout << (i==0?"\n":"*") << m[i];}return 0; }

總結

以上是生活随笔為你收集整理的1096 Consecutive Factors (20 分)_24行代码AC的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。