0
votes
3answers
64 views

Using binary indexed trees for a RMQ extension

The RMQ problem can be extended like so: Given is an array of n integers A. query(x, y): given two integers 1 ≤ x, y ≤ n, find the minimum of A[x], A[x+1], ... A[y]; update(x, v): given an ...
1
vote
2answers
44 views

Optimal shift scheduling algorithm

I have been trying for some time solve a scheduling problem for a pool that I used to work at. This problem is as follows... There are X many lifeguards that work at the pool, and each has a specific ...
1
vote
1answer
52 views

Optimization with a greedy algorithm

If an optimization problem can be solved using the greedy method, is it true that all its optimal solutions must always contain the first choice (i.e. the greedy choice)?
-1
votes
2answers
54 views

How to find the combination of words that includes all the letters in the input with Python

I want to find the most efficient way to loop through the combination of letters that are entered in Python and return a set of words whose combination includes all the letters, if feasible. Example: ...
11
votes
2answers
65 views

How to match a tree against a large set of patterns?

I have a potentially infinite set of symbols: A, B, C, ... There is also a distinct special placeholder symbol ? (its meaning will be explained below). Consider non-empty finite trees such that every ...
0
votes
0answers
87 views

How to optimize a function with several variables [closed]

I need to develop code to optimize a set or variables based on the following conditions. I don't have the source of function. The function gets a point (x,y) and generate a mapped point (x',y') ...
2
votes
3answers
80 views

A variation of “How to find the maximum area of a rectangle given its perimeter” with Python

I have an optimization problem with the following mathematical model. It is similar to finding the maximum area of a rectangle given its perimeter but in this example we don't have 2 variables. I ...
7
votes
2answers
101 views

Maximize resource utilization given multiple types of resources and specific mixtures of resources per task

Given You have some very large number of possible tasks, each of which requires the use of some subset of possible resources from a large number of possible resources. Each task has an associated ...
0
votes
0answers
36 views

Dynamic Grid Traversal [closed]

In one of the problem, i need to traverse a 2D grid choosing an optimal path from (0,0) to (m,n) such that the path's value is decided by the elements of the grid on the path. But traversal alters the ...
3
votes
1answer
63 views

Optimization on Algorithm to check “Whether for a given directed graph there is only one way to sort the graph using topological sort or not”

My algorithm for this is : First to calculate Indegree of every node , i.e. count of how many edges are there for which this node is sink for them. Now, will push only those in queue which have ...
0
votes
0answers
31 views

Dynamic teams tournament design

I would like to create a schedule for a set of players to play a tournament. The players are divided into a number of teams, and each round consists of the matches between these teams. The type of ...
1
vote
1answer
49 views

Finding the median of medians of quicksort

I am working on quick-sort with median of medians algorithm. I normally use the selection-sort to get the median of the subarrays of 5 elements. However, if there are thousands of subarrays, it means ...
3
votes
1answer
66 views

“Charge changing” algorithm

First of all I'm not sure how to name this problem. If anyone have better idea feel free to change it or tell that I do so. Let's say I have two strings s1, s2 containing '+' and '-', which means ...
3
votes
2answers
95 views

Serial Comprehension in Haskell

Say one wants to run some kind of comparison on a list of combinations, for example: combs [] r = [r] combs (x:xs) r = combs xs (x:r) ++ combs xs r answer = minimumBy (\a b -> compare (length ...
0
votes
1answer
37 views

Constraints in MATLAB Genetic Algorithm - Not Just Input Constraints

Good day I'm working with Genetic Algorithms in MATLAB using the Global Optimization Toolbox. I'm quite experienced in this area. My question is as follows: How do I specify constraints that are not ...
-3
votes
0answers
49 views

How to solve integer linear programming problems? (Optimization/Train Scheduling) [closed]

To be more specific.. I have to schedule 5 trains. I know the length of each train. I know the speed of each train. I know the network topology, The start point and destination point of each train. ...
5
votes
2answers
126 views

SPOJ 370 - Ones and zeros (ONEZERO)

I am trying to solve SPOJ problem "Ones and zeros": Certain positive integers have their decimal representation consisting only of ones and zeros, and having at least one digit one, e.g. 101. If a ...
1
vote
4answers
36 views

cut signal (interlinked) and compute theses parts

I'm a French student engineer in signal processing field and I do my internship in a neuroscience laboratory. I've to process a lot of data from the brain activity with the help of Matlab, so one of ...
7
votes
1answer
313 views

Optimizing network bandwidth over distributed database aggregation jobs

I have a distributed/federated database structured as follows: The databases are spread across three geographic locations ("nodes") Multiple databases are clustered at each node The relational ...
0
votes
1answer
41 views

Implementing steepest ascent to optimize probabilities

I want to reimplement a method that involves optimization of probabilities. The notes I got include the calculation of the gradient w.r.t. that parameter, and the notes "the derivation has a ...
0
votes
3answers
32 views

What is the runtime to access an element from an array or has table? How is it different from find or search?

In a completely theoretic analysis to computing algorithm runtimes; If I want to include a line in my psuedo code that involves searching for a value in an array or a value of a hash table given a ...
1
vote
3answers
67 views

set covering in shipments between cities

There is a number of warehouses in different cities in which different products are kept. Each warehouse may keep a number of units of a product e.g (warehouse in Chicago keeps 14 units of A product, ...
-2
votes
2answers
112 views

Fastest way to order a huge vector?

I am looking for the fastest way to order a multidimensional vector of 220000 * 7 * 6. I am ordering by the [x][5][y] and I have to make all the value of the middle (7) vector follow up. for(int i ...
4
votes
1answer
84 views

Pre-processing a loop in Objective-C

I am currently writing a program to help me control complex lights installations. The idea is I tell the program to start a preset, then the app has three options (depending on the preset type) 1) ...
1
vote
3answers
46 views

USACO number triangle

The question is as follows Consider the number triangle shown below. Write a program that calculates the highest sum of numbers that can be passed on a route that starts at the top and ends somewhere ...
1
vote
1answer
50 views

Finding all possible sub-optimal(not optimal!!!) solutions in optimization

I am writing a CPLEX optimization code to generate a matrix, which takes r and n as the command line arguments, but they may be assumed 2 and 4 for now. The condition for generating the matrix is ...
2
votes
2answers
61 views

Algorithm for finding empty cell around desired position in a grid

I will describe my problem using the attached image : The green block is the starting position of my game entity. Next I'd like to move it to the position marked by the orange square. But at the ...
0
votes
2answers
72 views

normalise list data in range (0.0, 1.0)

I create a dict with lists as values, containing some parameters. these parameters are mostly float or int and sometimes boolean values (in my case stored as 0 or 1). Now i want to select the best ...
-1
votes
1answer
58 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): ...
0
votes
1answer
51 views

How to find the maximum edge-weighted clique?

The maximum clique problem(MC-problem) is a classical NP problem, and we could use branch-bound to solve this problem effectively. Recently, I try to develop an algorithm to find out the clique that ...
1
vote
4answers
142 views

How do I short this scala code?

I am a Scala newbie. I tried turkish citizenship number validation algorithm. How do I implement and optimize this scala code? You can find my java version this link ...
10
votes
3answers
208 views

All natural numbers which sum up to N and where the inverses sum up to one

I have a problem to solve. N natural number is given. I need to find a list of natural numbers which sum up to that given number and at the same time the inverses up to 1. a + b + c + ... = N 1/a + ...
7
votes
3answers
199 views

How can I improve my algorithm for generating combinations of a multiset?

How can I optimize the next() and hasNext() methods in the following generator which produces combinations of a bounded multiset? (I posted this to C++ as well as Java because the code is ...
1
vote
2answers
65 views

Is there an algorithm for optimization of expressions?

For example I have the array of tokens for expression x+2*(4*7): { "x" , "+" , "2" , "*" , "(" , "4" , "*" , "7" , ")" } I need get output like x+56. This is a simple example that can be much more ...
2
votes
4answers
130 views

Add two ArrayList to one ArrayList of hashmaps

I have two ArrayList and I want to make one ArrayList by adding them, both lists have same size I am going to do it this way. Is this optimized or can I make it better and efficient when the lists ...
-1
votes
1answer
117 views

Is there any more optimal way to solve this idempotent equation (modulo n ring)?

This is one of the problems on Project Euler: If we calculate a^2 mod 6 for 0 <= a <= 5 we get: 0, 1, 4, 3, 4, 1. The largest value of "a" such that a^2 mod 6 = a is 4. Let's call ...
6
votes
2answers
130 views

Algorithm: Distance transform - any faster algorithm?

I'm trying to solve distance transform problem (using Manhattan's distance). Basically, giving matrix with 0's and 1's, program must assign distances of every position to nearest 1. For example, for ...
3
votes
2answers
178 views

Graph Paths Abstraction Algorithm Needed

I have a data structure holding a graph like the one in the following picture: In this tree, a node can have any number of unique children from the levels below it. In tree in the picture represents ...
0
votes
3answers
129 views

Optimizing a Huge “OR” Pattern [closed]

I have an "OR" pattern like the following example: (X Y Z) | (X Y A B) | (X A K) | (M A J K) | (M A B) | (M Z). My problem is that the number of OR'ed operands of my real problem is huge and causes ...
0
votes
2answers
37 views

Unique tasks all along a program

In my program, I do some tasks, parametrized by a MyParameter object (I call doTask(MyParameter parameter) to run a task). From the beginning to the end of the program, I can create a lot of tasks (a ...
3
votes
3answers
83 views

Copy value into consts for optimization

Assume that your first objective is execution speed, then code cleanliness and finally usage of resources. If at a certain point of an algorithm a variable (for instance a double) is not going to ...
2
votes
2answers
190 views

Fastest way to propgate through a 2d Array C++

I have 2 large 2d arrays which is 100s*100s. which has one big loop to do the operation for several times. Inside it there is 3 loops; first loop store in arr1 the sum of each cell in arr2 multiplied ...
1
vote
1answer
67 views

Optimal figures arrangement on a square matrix

I am trying to solve the following problem and cannot think of how: We have a set of figures (line, square, 'plus' etc.) and they are initially placed on a matrix, so that some of them overlap. We ...
-5
votes
1answer
63 views

Water Storage Scheduling [closed]

MIB's headquarter has N water tanks. Tank i can store at most ci units of water. Each tank has its own incoming and outgoing pipes. Incoming pipe of tank i leaks water at rate ui, which means if we ...
2
votes
1answer
63 views

My practicing with PHP sqrt does not work

I'm practicing algorithms creating the fastest possible prime generator I can think off. This is the working code I have up to date: $p = array(); function isPrime($i) { global $p; ...
1
vote
5answers
110 views

Am I iterating this enumerable twice here?

Consider the following block of code: using (FileStream fs = new FileStream(@"C:\bad_records.txt", FileMode.Create, ...
10
votes
2answers
336 views

Fast algorithm to optimize a sequence of arithmetic expression

EDIT: clarified description of problem Is there a fast algorithm solving following problem? And, is also for extendend version of this problem that is replaced natural numbers to Z/(2^n Z)?(This ...
1
vote
1answer
83 views

Is the variation of Knapsack NP-Complete?

In the knapsack problem, the only constraint is that the total size of picked items is no larger than the total size of the package. We know the Knapsack problem is NP-Complete. However, if we have ...
1
vote
1answer
36 views

NP-Complete Graph optimization: minimal node selection?

Suppose you have a graph G = (V, E) that represents the floor plan of a one-story shopping mall. The individual stores are represented by vertices, and the edges between vertices represent some ...
1
vote
0answers
91 views

Finding a number iteratively - algorithm design

I'm trying to design an algorithm that will find a price for me given a set of rules. Current Situation We currently set the 'price' of all products to £0.01 and set a 'line_crossed' property to ...

1 2 3 4 5 14