11
votes
5answers
206 views

Is it possible to enumerate computer programs?

Suppose you have to write a program that will test all programs in search of one that completes a specific task. For example, consider this JavaScript function: function find_truth(){ ...
-1
votes
1answer
50 views

Algorithm for optimal combinations to cut

Input: I have a master length of 10m and I have products that need to be cut in 3m, 4m, 5m dimensions. I tried writing an algorithm that will generate the following table for me (optimal lengths): ...
4
votes
3answers
86 views

Algorithm to fit as many events into a schedule as possible

I'm trying to find an algorithm that can arrange as many of these non-overlapping events into a schedule as possible (where any of these events can be added or removed from the schedule as needed). ...
0
votes
2answers
25 views

Subtract a constant from a vector's magnitude (shorten the vector) without using square root?

I have a 2 dimensional vector V represented with integers, and I subtract a constant C from V's magnitude and get a vector W that has the same direction as V but obviously the magnitude of |V| minus ...
-1
votes
0answers
31 views

extract pattern in truth table

I have an N-variable truth table, and a 'pattern' that contains k items of the truth table. The pattern is defined by a k*k matrix that specifies k^2 hamming distances of the k^2 pairs of items. For ...
10
votes
1answer
128 views

Algorithm to determine the highest and lowest possible finishing position of a team in a league

Not sure if this is an appropriate question for SO, but here goes: I am interested in the required logic needed to be able to calculate the highest and lowest possible finishing position of a team in ...
1
vote
2answers
73 views

How to know the number of voters where the number of candidates is larger than the number of slots

Our country recently held its election and I became interested in finding the number of voters who voted for a given position. Solving this problem for one slot positions (mayor, governor, etc.) is ...
2
votes
3answers
66 views

How to find elements existing in two lists but with different indexes

I have two lists of the same length which contains a variety of different elements. I'm trying to compare them to find the number of elements which exist in both lists, but have different indexes. ...
1
vote
2answers
98 views

Longest path on a grid, without revisiting grid cells

I am looking for an algorithm to fidn the longest path between two points on a grid, with the added restriction that you cannot revisit a cell on the grid. (Also, you can only move up, down, left, and ...
4
votes
2answers
67 views

Checkers board - DP

Given a checkers board with 4 rows and N columns. each cell in the matrix has a value. Given 2N tokens that need to be placed on the board (each on a single cell) so the total sum of all the values ...
4
votes
3answers
68 views

How to handle multiple simultaneous elastic collisions?

I'm computing the result by colliding pairs of 2D convex objects (without rotation), using the basic equations on wikipedia. However, when there are dependencies, like two objects hitting another ...
1
vote
3answers
53 views

Edit distance between two graphs

I'm just wondering if, like for strings where we have the Levenshtein distance (or edit distance) between two strings, is there something similar for graphs? I mean, a scalar measure that identifies ...
2
votes
1answer
113 views

Algorithm to calculate how much of text A is in text B?

I need to calculate how much of a block of text (A) is in another block of text (B). Simple algorithms like soundex aren't providing great results for me as text B has additional text within it that ...
3
votes
1answer
53 views

Find phrase that has a specific length and is composed by certain letters

Suppose I have a list of 1 million words. I have the length of the phrase that I need to find, and I know that this word can be composed of at most 3 other words, for example Queen of England, has 14 ...
1
vote
0answers
54 views

Place Intervals to Maximize Number of Adjacency

My problem: I have n "items" to place on an integer axis. Each item contains several choices of placement, represented as closed intervals of integers. These intervals can have some overlapping ...
0
votes
0answers
22 views

how to deal with dynamic item set in recommender system?

I'm currently working on design of a large scale recommender system. In literature, most of the recommendation algorithms assume that they're m users and n items and perform the computing to estimate ...
1
vote
2answers
106 views

How is Floyd-Warshall a Dynamic Algorithm?

Since the Floyd-Warshall algorithm is dynamic, that means that it must provide an optimum solution at all times, right? So what's confusing me is what the nature of these optimum solutions is during ...
0
votes
1answer
39 views

Algorithm for animating elements running across a scene

I'm not sure if the title is right but... I want to animate (with html + canvas + javascript) a section of a road with a given density/flow/speed configuration. For that, I need to have a "source" of ...
1
vote
1answer
98 views

How to check if line intersects a rectangle?

If you have 4 values x1,y1,x2,y2 (x1<=x2, y1<=y2) which represent the four sides of a rectangle, and 4 more values x3,y3,x4,y4 which represent 2 end points of a line, how can you check if ...
0
votes
0answers
114 views

Extract Patterns in an Interger Array

My first question in SO :) In short, my problem is to find several integer "patterns" in an integer array; the result should be optimal with respect to the total value of all the patterns extracted.  ...
2
votes
3answers
87 views

Lazy Shuffle Algorithms

I have a large list of elements that I want to iterate in random order. However, I cannot modify the list and I don't want to create a copy of it either, because 1) it is large and 2) it can be ...
0
votes
1answer
51 views

Finding a group of vertices in a graph so that each vertex can reach k other vertices

Let G=(V,E) be a directed graph and k is an integer. I need to find in a linear time the group of vertices so that each vertex in this group can reach exactly k vertices (including itself). The first ...
2
votes
2answers
88 views

How to assign rooms most effeciently?

Story: Our company will go outing soon. For our staying in the resort, every two of our colleagues will share one room. Our admin assistant has collected our preference of who to share rooms with, ...
0
votes
2answers
85 views

Best way to represent numbers of unbounded length?

What's the most optimal (space efficient) way to represent integers of unbounded length? (The numbers range from zero to positive-infinity) Some sample number inputs can be found here (each number ...
3
votes
2answers
103 views

Find basic words and estimate their difficulty

I'm looking for a possibly simple solution of the following problem: Given input of a sentence like "Absence makes the heart grow fonder." Produce a list of basic words followed by their ...
0
votes
1answer
40 views

Calculating parallax layer world coordinates?

I'm trying to position a sprite in a 2d game at a certain world position on a parallax layer. So if my parallax layer has a scroll factor of 0.5, when the camera moves 2 pixels, that layer moves 1 ...
8
votes
3answers
422 views

How to detect if the given graph has a cycle containing all of its nodes? Does the suggested algorithm have any flaws?

I have a connected, non-directed, graph with N nodes and 2N-3 edges. You can consider the graph as it is built onto an existing initial graph, which has 3 nodes and 3 edges. Every node added onto the ...
2
votes
3answers
190 views

All Possible Combinations from non uniform table, with only one value from each column

Background In grade 11 in my school, we are required to take 4 subjects and English from a list of predefined subjects. Today, we were given a grid which helps us make our combo, such that you can ...
3
votes
2answers
137 views

Sorting Geographical non-contiguous line segments along an implied curve

Given: A Set (for the sake of discussion we will call it S), which is an unordered collection of line segments. Each line segment is defined as two Longitude-Latitude end-points. While all of the ...
4
votes
4answers
163 views

Applying a sequence of operations from N to obtain the value M

This is homework! Please do not give me the solution, just a hint! The problem is to apply a sequence of operations from N to find M. The input is 6 numbers: A, B, C, D, N, M, where A corresponds to ...
4
votes
4answers
105 views

Balanced binary trees versus indexed skiplists

Not sure if the question should be here or on programmers (or some other SE site), but I was curious about the relevant differences between balanced binary trees and indexable skiplists. The issue ...
0
votes
2answers
177 views

Iterating item in a loop

I have a List<int> with the values like 60,45,45,45,45,30,60,60,15 people Also i have two slots. 1st slot is capable to occupy 180 people Problem is I need to loop List<int> to fill ...
2
votes
2answers
143 views

Linear time algorithm to determine whether a DAG has a vertex reachable from every other vertex?

I have the following homework question: DAG: Design a linear-time algorithm (O(|E|+|V|)) to determine whether a DAG has a vertex that is reachable from every other vertex, and if so, find one. Now ...
3
votes
0answers
75 views

Maximum number of clues in a Sudoku game that does not produce a unique solution [closed]

You may have heard that last year it was proven that the smallest number of starting clues for a Sudoku game, guaranteeing a unique solution, is 17. An example is shown below. I am interested in ...
-6
votes
1answer
185 views

Bankers algorithm

I have a question about the answer to a problem on Dijkstra's Banker's Algorithm (the question is provided in the screen shot below). I thought the answer to this question should be "yes, it is ...
0
votes
2answers
235 views

Algorithm for diameter of graph?

If you have a graph, and need to find the diameter of it (which is the maximum distance between two nodes), how can you do it in O(log v * (v + e)) complexity. Wikipedia says you can do this using ...
2
votes
1answer
169 views

Is “house coloring with three colors” NP?

Consider the problem described here (reproduced below.) Can some better known NP-complete problem be reduced to it? The problem: There are a row of houses. Each house can be painted with three ...
11
votes
5answers
243 views

Parallel top ten algorithm for distributed data

This is an interview question. Suppose there are a few computers and each computer keeps a very large log file of visited URLs. Find the top ten most visited URLs. For example: Suppose there are only ...
0
votes
1answer
77 views

How to find contiguous areas in matrix with less memory?

Suppose I have a matrix of 0 and 1. Now I would like to count all contiguous areas in the matrix that contain only 1. allocate a new matrix "visited" to track visited elements COUNT = 0 for each ...
-1
votes
2answers
195 views

Split the numeric string and Find sum

How do I write a method, which takes a single argument. The single argument is a string s, which contains only non-zero digits. This function should print the length of longest contiguous substring ...
-3
votes
3answers
100 views

If L and M are Linked List , under what conditions is LM = ML

This is a question from List Data Model by Ullman If L and M are Linked List , under what conditions is LM = ML ? i was reading Foundation of Computer Science book .The question is from ...
0
votes
1answer
325 views

BIT:Using a binary indexed tree? [closed]

A binary indexed tree has very less or relatively no theory to study as compared to other data structures. The only place where it is taught succinctly is the topcoder tutorial. Although the tutorial ...
0
votes
2answers
80 views

Is there a specific algorithm for generating all combinations of n elements, taken n-1 at a Time

I know of the algorithm for the general case (e.g. generating all combination of n elements taken m at a time) but I was wondering if there was a faster one specifically designed for the case m=n-1. ...
8
votes
5answers
520 views

Maximizing difference between numbers in a sequence

I need some help in finding the general idea for an algorithm to solve the following problem. The problem has been given to me in an assignment. It looks like it should be solvable through a greedy ...
1
vote
1answer
95 views

Finding a path with minimum number of red vertices in a graph

Let G=(V,E) be an undirected graph, s and t are two vertices in V. Each edge of the graph is colored either red or blue. I need to find an algorithm that finds a path between s and t that has minimal ...
0
votes
1answer
44 views

How to program the validation for this inequality relationship?

This question follows from another question of mine regarding validation for inequality between four related numbers(namely min, max ,threshold1 and threshold2.). I would basically like to program for ...
0
votes
2answers
305 views

Sum of 5 numbers = 100 [duplicate]

So, you are given 10 numbers and your are supposed to choose 5 numbers out of those so that the sum is 100. Now, I obviously tried to solve it using a program and got the obvious solution with five ...
12
votes
2answers
133 views

Efficiently find order statistics of unsorted list prefixes?

A is an array of the integers from 1 to n in random order. I need random access to the ith largest element of the first j elements in at least log time. What I've come up with so far is an n x n ...
2
votes
1answer
687 views

Recurrence Relation for Dynamic Programming Exercise

I received a dynamic programming assignment and I need help figuring out the recurrence relation. The problem is similar to the weighted interval problem, but it has a few additional restrictions: ...
1
vote
3answers
117 views

Where to find a set of hard Traveling Salesman Problems (with known solutions/approximations)?

I want to try my hand at finding heuristics/approximations for solving the Traveling Salesman Problem, and in order to do that, I'm looking for some "hard" TSP instances (along with their best known ...

1 2 3 4 5 23