试除法求约数算法总结

知识概览

  • 试除法求一个数的约数的时间复杂度是O(\sqrt{n})

例题展示

题目链接

活动 - AcWing 系统讲解常用算法与数据结构,给出相应代码模板,并会布置、讲解相应的基础算法题目。icon-default.png?t=N7T8https://www.acwing.com/problem/content/871/

题解

用试除法求约数,总的时间复杂度是100 \times \sqrt{2 \times 10^9},也就是400万~500万之间。

代码

#include 
#include 
#include 

using namespace std;

vector get_divisors(int n)
{
    vector res;
    
    for (int i = 1; i <= n / i; i++)
        if (n % i == 0)
        {
            res.push_back(i);
            if (i != n / i) res.push_back(n / i);
        }
        
    sort(res.begin(), res.end());
    return res;
}

int main()
{
    int n;
    cin >> n;
    
    while (n--)
    {
        int x;
        cin >> x;
        auto res = get_divisors(x);
        for (auto t : res) cout << t << ' ';
        cout << endl;
    }
    return 0;
}

参考资料

  1. AcWing算法基础课

你可能感兴趣的:(经典算法总结,数论,算法,试除法,数学,数论,约数,试除法求约数)