Write a C ++ function that determines the number of uneven divisors of a natural number transmitted as a parameter. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a C ++ function that determines the number of uneven divisors of a natural number transmitted as a parameter.

Write a C ++ function (named "nr_div_imp") that determines the number of uneven divisors (1, 3, 5...) of a natural number transmitted as a parameter. The function returns the result via an output parameter. This is my ideea, but I need to make it faster. Ideeas are highly appreciated. 😅✨ #include <iostream> using namespace std; void nr_div_imp(int n, int &k) { k=0; for(int d=1;d<=n;d+=2) if(n%d==0) k=k+1; }

11th Nov 2020, 12:22 AM
Marilena Bivolaru
Marilena Bivolaru - avatar
2 Answers
11th Nov 2020, 1:01 AM
Mariano Fregosi
Mariano Fregosi - avatar
+ 1
You can first divide your number n by the largest power of 2 it is divisible by - you'll get an odd number m, which has the same odd divisors as n. Then you can loop (with step 2) from 1 up to int(sqrt(m)), counting each found divisor twice: for each divisor a < sqrt(m) there would be a divisor n/a > sqrt(m). Finally if sqrt(m) is integer, it means you counted it twice, so you should reduce the result by 1 This way the complexity of your function would be O(sqrt(n)) instead of linear.
11th Nov 2020, 9:38 AM
Volodymyr Chelnokov
Volodymyr Chelnokov - avatar