Tagged Questions

43
votes
15answers
34k views

Algorithm to calculate the number of divisors of a given number

What would be the most optimal algorithm (performance-wise) to calculate the number of divisors of a given number? It'll be great if you could provide pseudocode or a link to some example. EDIT: All ...
32
votes
11answers
1k views

Interview Question: Optimal Solution to the problem of finding Heavy integers

an interesting interview question: A non-negative integer is called heavy if the average value of its digits in decimal representation exceeds 7. For example the number 8698 is heavy, because the ...
7
votes
1answer
210 views

Exposé Layout Algorithm

I'm making something which lays items out similar to what Mac OS X does with windows in Exposé. It adapts to the aspect ratio of the items and the aspect ratio of the available area. Basically, the ...
6
votes
1answer
146 views

Minimal area matrix covering

Considering an n-by-n binary matrix, I would like to find the minimal area of two rectangles that would cover all the ones (1s). That is, the sum of the areas of the rectangles must be minimal. The ...
6
votes
3answers
276 views

Optimal algorithm for generating a random number R not in a set of numbers N

I am curious to know what the best way to generate a random integer R that is not in a provided set of integers (R∉N). I can think of several ways of doing this but I'm wondering what you all think.
4
votes
4answers
294 views

When locally optimal solutions equal global optimal? Thinking about greedy algorithm

Recently I've been looking at some greedy algorithm problems. I am confused about locally optimal. As you know, greedy algorithms are composed of locally optimal choices. But combining of locally ...
4
votes
3answers
363 views

Polynomial multiplication complexity reduction

I have been trying to figure tis ou for 3 days and have not gotten anywhere. I have to implement polynomial multiplication (multiply 2 quadratic equations). They look like: ( a1 x^2 + b1 x + c1 ) * ...
4
votes
5answers
379 views

I need an algorithm to find the best path

I need an algorithm to find the best solution of a path finding problem. The problem can be stated as: At the starting point I can proceed along multiple different paths. At each step there are ...
3
votes
1answer
69 views

Stable pairing algorithm with only set of priorities?

Consider the Stable Marriage Algorithm: In mathematics and computer science, the stable marriage problem (SMP) is the problem of finding a stable matching between two sets of elements given a set ...
3
votes
4answers
429 views

Optimal algorithm for returning top k values from an array of length N

I have an array of n floats, and I wish to return the top k (in my case n ~ 100, k ~ 10) Is there a known optimal solution path for this problem? Could someone provide a C algorithm? EDIT: ...
2
votes
4answers
459 views

Optimal solution for non-overlapping maximum scoring sequences

While developing part of a simulator I came across the following problem. Consider a string of length N, and M substrings of this string with a non-negative score assigned to each of them. Of ...
1
vote
2answers
263 views

Approximate algorithm for minimum raggedness word wrap

I'm looking for an efficient algorithm (ideally, C-like pseudocode) to give an approximate solution to the following partition problem. Given a sequence S = {a_i : i=1,...,n} and a bound B, ...
-1
votes
3answers
52 views

how to find out whether dynamic programming's answer is the optimal answer or not?

what sort of algorithm should I use beside to find out whether dynamic programming's answer to the problem is the optimal answer or not? could you suggest some papers to help me find out that?