Divide-and-conquer is a top-down technique for designing algorithms that consists of dividing the problem into smaller subproblems hoping that the solutions of the subproblems are easier to find and then composing the partial solutions into the solution of the original problem.

learn more… | top users | synonyms

-2
votes
0answers
77 views

Constructing a Divide and Conquer Algorithm [closed]

I don't know what is the relation between m and n? I'm thinking of using something similar to the Merge Sort algorithm. So the recurrence running time of Merge Sort is T(n) = 2T(n/2) + n. So, how to I ...
2
votes
1answer
62 views

closest to zero [absolute value] sum of consecutive subsequence of a sequence of real values

this is an algorithmic playground for me! I've seen variations of this problem tackling maximum consecutive subsequence but this is another variation as well. the formal def: given A[1..n] find i and ...
-2
votes
0answers
46 views

Designing a Divide and Conquer Algorithm [closed]

Assume we are given a function that merges two sorted lists of size at most m each, in running time of (0 to m) (exclusive). Design a divide and conquer algorithm that uses the given function and ...
0
votes
1answer
102 views

Divide and conquer algorithm applied in finding a peak in an array.

For an array a: a1, a2, … ak, … an, ak is a peak if and only if ak-1 ≤ ak ≥ ak+1 when 1 < k and k < n. a1 is a peak if a1 ≥ a2, and an is a peak if an-1 ≤ an. The goal ...
2
votes
1answer
70 views

Back Tracking Vs. Greedy Algorithm Maximum Independent Set

I implemented a back tracing algorithm using both a greedy algorithm and a back tracking algorithm. The back tracking algorithm is as follows: MIS(G= (V,E): a graph): largest set of independent ...
8
votes
1answer
119 views

Given a set of n points (x,y), is it possible to find the number of pairs of points with negative slopes between them in O(n logn) time?

Given a set of n points on a 2-d plane of the form (x,y), the aim is to find the number of pairs of all points (xi,yi) and (xj, yj) such that the line joining the two points has a negative slope. ...
-3
votes
1answer
28 views

and conquer algorithm - search for pattern in string [closed]

I am trying to write a divide divide-and-conquer algorithm in pseudocode that finds how many occurrences of a 3-letter pattern there are in a given string of n letters. Something like this in ...
-7
votes
1answer
54 views

How can I get an algorithm? [closed]

How can I get an algorithm to multiply long numbers using divide conquer strategy?and alogrithm should divide numbers into three parts
1
vote
1answer
164 views

Master's theorem with f(n)=log n

For master's theorem T(n) = a*T(n/b) + f(n) I am using 3 cases: If a*f(n/b) = c*f(n) for some constant c > 1 then T(n) = (n^log(b) a) If a*f(n/b) = f(n) then T(n) = (f(n) log(b) n) If a*f(n/b) = ...
1
vote
4answers
143 views

Divide and conquer - why does it work?

I know that algorithms like mergesort and quicksort use the divide-and-conquer paradigm, but I'm wondering why does it work in lowering the time complexity... why does usually a "divide and conquer" ...
0
votes
1answer
49 views

Better alternative to divide and conquer algorithm

First let me explain the problem I'm trying to solve. I'm integrating my code with 3rd party library which does quite complicated financial predictions. For the purposes of this question let's just ...
0
votes
1answer
97 views

Divide et impera for matrices rotating

I have tried to solve the 2nd problem b and d subproblems from this exercise: http://courses.engr.illinois.edu/cs473/sp2010/homework/hw1.pdf I solved the b to the following way: My first question ...
0
votes
0answers
25 views

Tiling 7 X 7 deficient board with bent trominoes

Can anyone direct me to an algorithm to tile any 7 X 7 board with deficiency at (1, 2) with bent trominoes? Or even to an arrangement of bent trominoes on a 7 X 7 deficient board? I have been reading ...
0
votes
0answers
84 views

recurrence relation with sum

everyone! This is a tough question about recurrence relation that contains sum inside the recursion.I am totally stuck and feeling depressed about it. Can anyone help ? The problem asks to solve the ...
0
votes
1answer
180 views

Coreman MergeSort implementation in java is not producing correct output

I am trying to implement Coreman's MergeSort algorithm in Java. But it always gives me wrong output. Before sorting : [86, 8, 60, 9, 49, 73, 37, 59, 98, 69] After Sorting : [8, 8, 9, 37, ...
1
vote
1answer
87 views

Big Mod algorithm

I am trying to make a Pascal program for my school programming team's online judge. The program has to output a^b mod c, where a, b and c are given as input. You cant use brute force as the test case ...
0
votes
2answers
407 views

divide and conquer algorithm

I've been given a 2^k * 2^k sized board, and one of the tiles is randomly removed making it a deficient board. The task is to fill the with "trominos" which are an L-shaped figure made of 3 tiles. ...
-4
votes
1answer
143 views

Matrix Multiplication Time Complexity [closed]

The divide and conquer algorithm for matrix multiplication in which we divide the matrix into four sub matrices of n/2 x n/2 runs in n^3 time. if we divide the matrix into 9 sub matrices of n/3 x n/3 ...
6
votes
2answers
353 views

How to efficiently compute the cosine similarity between millions of strings [closed]

I need to compute the cosine similarity between strings in a list. For example, I have a list of over 10 million strings, each string has to determine similarity between itself and every other string ...
2
votes
1answer
448 views

Merge skylines, divide and conquer

I'm trying to solve the famous skyline problem (see gif): Input (1,11,5), (2,6,7), (3,13,9), (12,7,16), (14,3,25), (19,18,22), (23,13,29), (24,4,28) Should return, the points that are behind ...
0
votes
0answers
51 views

how does easy split hard merge sort compare with easy-split hard-merge? (divide and conquer)

Here are two 'solutions' presented in my lecture notes to perform 'easy split hard merge': public static <T extends Comparable<T>> List<T> iSort(List<T> l) { ...
1
vote
1answer
142 views

Learning Divide and Conquer Algorithms

I have been trying to learn divide and conquer algorithms and I have come up with what I thought would work using java. The algorithm is supposed to take an array of size n that is a base 2. It should ...
0
votes
2answers
263 views

Simple Divide and Conquer Example

Here is my test divide and conquer program, but it gives me an error. I am heading in the right direction? public class getSum { static int sum = 0; public static void main(String[] args) { ...
0
votes
2answers
325 views

Divide and Conquer Algorithms

We are starting to work with Divide and conquer algorithms in my Data structures class and I am having a lot of trouble completely understanding what I am supposed to do. Below is the which is ...
0
votes
2answers
106 views

Divide and conquer: IndexSearch

i solved the following task by myself: Give an algorithm to find an index i such that 1 <= i <= n and A[i] = i provide such an index exists. If there are any such indexes, algorithm can return ...
-1
votes
1answer
79 views

What is Order Statistics and ith smallest?

I have an Algorithm course this semester. Everything is fine until I reached the lecture about Order Statistics. Here is the first slide of that lecture: Order Statistics Select the ith smallest of ...
0
votes
2answers
93 views

sorted matrix search master theorem analysis

So the problem is to find whether x is in one of the elements of a sorted matrix ascending by row and by column. example : 1 2 3 4 5 6 7 8 9 I'm interested to find the time complexity of the ...
4
votes
4answers
1k views

Maximum Subarray: Divide and Conquer

Disclaimer: this is for an assignment. I am not asking for explicit code, only enough help to understand the algorithm involved so that I might fix the errors in my code. Okay, so you're probably ...
5
votes
2answers
405 views

a “divide and conquer” algorithm assignment

Now I have N different intergers, I need to find an interval that has the most numbers whose value is between the endpoints of the interval in O(NlogN) time. I call it a "divide and conquer" problem ...
0
votes
1answer
143 views

Calculating runtime in recursive algorithm

Practicing recursion and D&C and a frequent problem seems to be to convert the array: [a1,a2,a3..an,b1,b2,b3...bn] to [a1,b1,a2,b2,a3,b3...an,bn] I solved it as follows (startA is the start of as ...
0
votes
0answers
105 views

divide and conquer algorithm for exact string matching? [closed]

I haven't been able to find documentation (papers, algorithms) about divide and conquer exact string matching algorithms. I'm sure there are a bunch, but I obviously don't know their names/how to ...
-3
votes
1answer
47 views

need character to print in output lines

I need these lines to output when a letter is typed instead of a whole number. I am not sure how to get it to do this: I have the code and what I need posted below if you can help me solve this ...
3
votes
2answers
173 views

shortest distance in a series of xy coordinates

I have an assignment which compares 2 different algorithms for a problem. Here's the problem: Suppose I have a series of xy coords like this : A(2,3), B(5,6), C(7,8), D(6,2), E(5,5), etc.. And ...
0
votes
1answer
64 views

Why is there so much of a speed difference in these factorial functions?

So I recently became interested in computing factorials really fast, and I wrote one and and got a few others from the internet to test. Here is the code (Python 2.7): def prime_sieve(n): """A ...
2
votes
2answers
154 views

Why is divide and conquer so fast? [closed]

So I recently decided to look into factorial computing functions, and I have found one that is so totally fast, it blows my mind: def multiply_range(n, m): print n, m if n == m: ...
10
votes
6answers
3k views

Difference between Divide and Conquer Algo and Dynamic Programming

What is the difference between Divide and Conquer Algorithms and Dynamic Programming Algorithms ? How are the two terms different ? I do not understand the difference between them. Please take a ...
2
votes
3answers
804 views

Divide and Conquer array algorithm ++

I'm trying to implement a function that will look at each element of an array and determine if that particular element is larger than one INT and less than another INT. For example: Return true if ...
-2
votes
3answers
324 views

Minimization of the maximum element in an array

You have an array of size n of positive integers on which you can do the following operation by at most N times: Choose a sub-array and decrease its elements value by k (k must be smaller than the ...
0
votes
2answers
144 views

Python translation of C code not working

I want to find the maximum element in an array in O(log N) time using divide and conquer. I found a working code at planet-source-code. I translated it into Python as follows: def largest(arr,i,j): ...
0
votes
2answers
585 views

Counting the number of inversions in an array, C++

Inversion in an array a of size n is called a pair (i,j) for which it holds that i<j and a[i]>a[j]. I'm trying to implement a function in C++ which counts the number of inversions in a given ...
2
votes
1answer
101 views

Going through on a unsorted array, distance between elements

Advice? Given an unsorted array and the number of elements, for each element i have to print the number of elements between itself and the farest element in the array that is smaller than him, if ...
6
votes
5answers
994 views

Why should Insertion Sort be used after threshold crossover in Merge Sort

I have read everywhere that for divide and conquer sorting algorithms like Merge-Sort and Quicksort, instead of recursing until only a single element is left, it is better to shift to Insertion-Sort ...
0
votes
0answers
160 views

Optimizing Mergesort

Merge-sort is a fairly common sorting algorithm, and I have written a working merge-sort algorithm. Then I want to optimize it. The first step was to convert it from a recursive to an iterative one, ...
2
votes
1answer
88 views

Permutation Tree for Combinatorial Search Problems?

I would like to generate a Search tree for a permutation problem. My requirement is as follows: I want to use a Divide and Conquer strategy for doing so I am giving an example tree length 3 ...
0
votes
0answers
111 views

Brute Force generating n-bit Strings with O(n) space complexity?

I want to generate all possible n-bit strings using Divide and Conquer approach. The problem is that I am able to do so, but the space complexity is also O(2^n). What I want is to generate each String ...
2
votes
1answer
340 views

Divide and Conquer - Buy or Sell? (Maximum Consecutive Subarray) [closed]

The gist of the program is to find the maximum sub array of a 1 dimensional array which has fluctuating stock prices using both a brute force method (Which is working!) and a divide and conquer method ...
0
votes
1answer
351 views

Divide and Conquer algorithm for generating n-bit strings?

Can someone please tell how to generate n-bit strings(all possible combinations) i.e. counting bits form 0 to 2^n-1 using Divide and Conquer Approach. I was able to do this with the following ...
1
vote
1answer
299 views

k-way merge with divide and conquer?

The idea is to recursively merge the first k/2 lists and the second k/2 lists, then merge the two merged lists into one list and return. I'm confused on what it means to recursively merge the ...
7
votes
1answer
189 views

How to paralellize a divide and conquer algorithm in Clojure

First of all say I have a problem, calculating 1 Billion digits of Pi, calculating the factorial of a large number, or performing mergesort over a large list. I would like to divide the problem into ...
5
votes
1answer
982 views

Algorithm for Shuffling a Linked List in n log n time

I'm trying to shuffle a linked list using a divide-and-conquer algorithm that randomly shuffles a linked list in linearithmic (n log n) time and logarithmic (log n) extra space. I'm aware that I can ...

1 2 3