Factorizing in C++

Can anyone help me out in improving the following program to find factors of number nn as it doesn't work for higher numbers.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cin>>n;
for (int a=1;a<n;++a)
{
if (n%a==0)
{
cout<<a<<"\n";
}
}
getch();
}

#ComputerScience #Factors #Cpp

Note by Pranjal Jain
6 years, 3 months ago

No vote yet
1 vote

  Easy Math Editor

This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.

When posting on Brilliant:

  • Use the emojis to react to an explanation, whether you're congratulating a job well done , or just really confused .
  • Ask specific questions about the challenge or the steps in somebody's explanation. Well-posed questions can add a lot to the discussion, but posting "I don't understand!" doesn't help anyone.
  • Try to contribute something new to the discussion, whether it is an extension, generalization or other idea related to the challenge.
  • Stay on topic — we're all here to learn more about math and science, not to hear about your favorite get-rich-quick scheme or current world events.

MarkdownAppears as
*italics* or _italics_ italics
**bold** or __bold__ bold

- bulleted
- list

  • bulleted
  • list

1. numbered
2. list

  1. numbered
  2. list
Note: you must add a full line of space before and after lists for them to show up correctly
paragraph 1

paragraph 2

paragraph 1

paragraph 2

[example link](https://brilliant.org)example link
> This is a quote
This is a quote
    # I indented these lines
    # 4 spaces, and now they show
    # up as a code block.

    print "hello world"
# I indented these lines
# 4 spaces, and now they show
# up as a code block.

print "hello world"
MathAppears as
Remember to wrap math in \( ... \) or \[ ... \] to ensure proper formatting.
2 \times 3 2×3 2 \times 3
2^{34} 234 2^{34}
a_{i-1} ai1 a_{i-1}
\frac{2}{3} 23 \frac{2}{3}
\sqrt{2} 2 \sqrt{2}
\sum_{i=1}^3 i=13 \sum_{i=1}^3
\sin \theta sinθ \sin \theta
\boxed{123} 123 \boxed{123}

Comments

You can firstly improve by running the loop till in2 i \leq \frac{n}{2} . Or you can try this:

1
2
3
4
5
6
7
8
9
int n;
cin>>n;
for(int l=1, int h=n ; l<=h ; l++,h=n/l)
{
    if(n%l==0)
    {
        cout<<l<<" "<<h<<" ";
    }
}

Sudeep Salgia - 6 years, 3 months ago

Log in to reply

Yes, I noticed n2\frac{n}{2} thing. Can you explain algorithm you used? Thanks.

Pranjal Jain - 6 years, 3 months ago

Log in to reply

So basically we can pair up the divisors for any given nn. So, l will have the smaller one and h will store the larger one ( such that l×h=n l \times h =n ) and we are incrementing l by one each time and correspondingly decreasing h. So h will decrease much faster and we would be skipping lot of numbers which anyway we need not check.

PS: I forgot to include the line to check whether l=h l= h that is if n is a perfect square.

Sudeep Salgia - 6 years, 3 months ago

Log in to reply

@Sudeep Salgia We can bring down n2\frac{n}{2} to n\lfloor\sqrt{n}\rfloor. I still can't understand how will it help while dealing with higher numbers. Let me compile.

Pranjal Jain - 6 years, 3 months ago

@Sudeep Salgia It showed many errors. Which compiler are you using? And I believe the condition should be if (n%h==0)

Pranjal Jain - 6 years, 3 months ago

Try this out

1
2
3
4
5
6
7
8
double n,i;
cin>>n;
for(i=1;i<=(n/2);i++)
    {
    double k=floor(n/i);
    if (i*k==n)
    cout<<setprecision(15)<<i<<endl;
    }

Raghav Vaidyanathan - 6 years, 3 months ago

Log in to reply

Why are you taking

1
2
Double k=floor(n/i);
    If(i*k==n)

to check if i i is a factor of n n instead of

1
If(n%i == 0)

Siddhartha Srivastava - 6 years, 3 months ago

Log in to reply

Big numbers cannot be stored in long. Therefore we need something which is even bigger, like float or double. The problem with using "%" function with float/double is that it will not work. "%" is meant to work only with integers(int or long or short), It will not work with float and double as they are decimal values. Does 100%2.3 make sense?

Hence we use a workaround to find the true factors of n by using floor.

Raghav Vaidyanathan - 6 years, 3 months ago

Log in to reply

@Raghav Vaidyanathan Ouch. I didn't notice that you used double. But then why not use long long? long long has a higher range than a double for the same memory, since a double can only hold 15 significant digits whereas long long can hold upto 18.

Note I don't use C++ so I have no idea if long long is used commonly.

Siddhartha Srivastava - 6 years, 3 months ago

Log in to reply

@Siddhartha Srivastava Nope, long long doesn't work in c++. That's the biggest problem here.

Raghav Vaidyanathan - 6 years, 3 months ago

Try Java Codes,They are always better than C++

Vraj Mehta - 6 years, 3 months ago

Log in to reply

For that, I'll have to learn java properly.

Pranjal Jain - 6 years, 3 months ago

Maybe you could try using long variable or long long . But that won't be really necessary if you are writing this for boards

Rohit Shah - 6 years, 3 months ago

Log in to reply

I program for fun. -_- I hate boards

Pranjal Jain - 6 years, 3 months ago

Log in to reply

Oh ! So have you studied any algorithm books like CLRS ? Or are you active on websites like topcoder , spoj ?

Rohit Shah - 6 years, 3 months ago

Log in to reply

@Rohit Shah Currently I am inactive due to JEE. But I will be active after 2-3 months on Project Euler.

Pranjal Jain - 6 years, 3 months ago

Try long double it has the max and min values 104932and10493210^{4932}\quad and \quad 10^{-4932} respectively and has a memory of 10 bytes. Its the biggest as far as I know.

Harshvardhan Mehta - 6 years, 3 months ago

Log in to reply

Modulus doesn't work with floating data types.

Pranjal Jain - 6 years, 3 months ago

How many times should i try to help before someone notices Pranjal Jain . I have included a few ideas in the following from Sudeep Salgia as well:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#include<conio.h>
#include<math.h>
#include<iomanip.h>

int main()
{
double m,i,k=10;
cin>>m;
for(i=1;i<k;i++)
    {
    k=floor(m/i);
    if (i*k==m)
    cout<<setprecision(15)<<i<<"  "<<k<<"  ";
    }
getch();
return 0;
}

Here are the factors of 1000000009910000000099

And here are the factors of 72968723897617296872389761

Raghav Vaidyanathan - 6 years, 3 months ago

Log in to reply

Thanks. Sorry for not noticing. I am quite inactive now a days on B'ant. (Turned off all email notifications as well)

Pranjal Jain - 6 years, 3 months ago
×

Problem Loading...

Note Loading...

Set Loading...