日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

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

發布時間:2024/2/28 编程问答 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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的全部內容,希望文章能夠幫你解決所遇到的問題。

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