Tagged Questions
6
votes
6answers
363 views
Faster algorithm to find how many numbers are not divisible by a given set of numbers
I am trying to solve an online judge problem: http://opc.iarcs.org.in/index.php/problems/LEAFEAT
The problem in short:
If we are given an integer L and a set of N integers s1,s2,s3..sN, we have to ...
3
votes
4answers
969 views
How to calculate all the prime factors of lcm of n integers?
I have n integers stored in an array a, say a[0],a[1],.....,a[n-1] where each a[i] <= 10^12 and n <100 . Now,I need to find all the prime factors of the LCM of these n integers i.e., LCM of ...
0
votes
3answers
1k views
LCM of two numbers
I am getting wrong result for my LCM program.
Ifirst find gcd of the numbers and then divide the product with gcd.
int gcd(int x, int y)
{
while(y != 0)
{
int save = y;
y = x % y;
x ...
0
votes
4answers
371 views
How to dereference multiple void pointers in structs into 1 piece of memory?
I am working on a project where I need to send over a certain IPC stack, (in my case, LCM), and the thing is I need to provide the IPC a variable length struct. I have
struct pack1 {int value1; int ...