Tagged Questions
The greedy tag has no wiki summary.
36
votes
9answers
25k views
Non greedy regex matching in sed?
I'm trying to use sed to clean up lines of URLs to extract just the domain..
So from:
http://www.suepearson.co.uk/product/174/71/3816/
I want:
http://www.suepearson.co.uk/
(either with or ...
16
votes
3answers
199 views
Matching text between delimiters: greedy or lazy regular expression?
For the common problem of matching text between delimiters (e.g. < and >), there's two common patterns:
using the greedy * or + quantifier in the form START [^END]* END, e.g. <[^>]*>, ...
9
votes
3answers
227 views
Optimal solution for creating a pile of boxes
I have a problem with one algorithm.
There are given n boxes, each one has fixed weight and strength (both given in kg). Box's strength tells us what is the maximum weight it can bear. We have to ...
9
votes
3answers
260 views
Algorithm to “transfer water from a set of bottles to another one” (metaphorically speaking)
Ok, I have a problem. I have a set "A" of bottles of various sizes, all full of water.
Then I have another set "B" of bottles of various sizes, all empty.
I want to transfer the water from A to B, ...
7
votes
1answer
202 views
Permuting rows in an array to eliminate increasing subsequences
The following problem is taken from Problems on Algorithms (Problem 653):
You are given a n x 2 matrix of numbers. Find an O(n log n) algorithm that permutes the rows in the array such that that ...
5
votes
3answers
163 views
How to spot a “greedy” algorithm?
I am reading a tutorial about "greedy" algorithms but I have a hard time spotting them solving real "Top Coder" problems.
If I know that a given problem can be solved with a "greedy" algorithm it is ...
5
votes
3answers
2k views
how to find maximum spanning tree?
Does the opposite of Kruskal's algorithm for minimum spanning tree work for it ? I mean, choosing the max weight (edge) every step ?
Any other idea to find maximum spanning tree ?
5
votes
2answers
167 views
Point covering problem
I recently had this problem on a test: given a set of points m (all on the x-axis) and a set n of lines with endpoints [l, r] (again on the x-axis), find the minimum subset of n such that all points ...
5
votes
3answers
255 views
Regex is behaving lazy, should be greedy
I thought that by default my Regex would exhibit the greedy behavior that I want, but it is not in the following code:
Regex keywords = new Regex(@"in|int|into|internal|interface");
var targets = ...
4
votes
2answers
87 views
Is there an edge we can delete without disconnecting the graph?
Before I start, yes this is a homework.
I would not have posted here if I haven't been trying as hard as I could to solve this one for the last 14 hours and got nowhere.
The problem is as follows:
I ...
4
votes
1answer
54 views
Regex too greedy
I'm trying to use regex to reduce strings of repeated characters. For example, I'm trying to turn:
Yaaaaaaaaay --> yaaay
hahahahahaha --> hahaha
toptoptoptop --> toptoptop
Thus, if I see a ...
4
votes
2answers
146 views
Dynamic Programming - making change
I'm having trouble figuring out my last section of code for a Dynamic Coin Changing Problem. I have included the code below.
I can't figure out the last else. Should I just use the greedy algorithm ...
4
votes
4answers
297 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
6answers
926 views
4
votes
1answer
148 views
Weighted disjunction in Perl Regular Expressions?
I am fairly experienced with regular expressions, but I am having some difficulty with a current application involving disjunction.
My situation is this: I need to separate an address into its ...
4
votes
1answer
393 views
How can you be sure that a problem exhibits “Greedy choice property”?
I am afraid that there might be a situation for which the "greedy choice property" might not hold.
For any problem, I can only check for small data-sets. What if, for large data-sets, the property ...
4
votes
4answers
2k views
Why does my Boost.Regex search report only one match iteration?
I am trying to find out how many regex matches are in a string. I'm using an iterator to iterate the matches, and and integer to record how many there were.
long int before = GetTickCount();
string ...
4
votes
6answers
1k views
How can I fix my regex to not match too much with a greedy quantifier?
I have the following line:
"14:48 say;0ed673079715c343281355c2a1fde843;2;laka;hello ;)"
I parse this by using a simple regexp:
if($line =~ /(\d+:\d+)\ssay;(.*);(.*);(.*);(.*)/) {
my($ts, ...
3
votes
1answer
50 views
The Bus Driver : uva 11389
The problem is here: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2384
I managed to solve this problem using a greedy approach. I sorted ...
3
votes
4answers
82 views
Can't get perl regex to be non-greedy
My regex matches the last set of alpha characters in the line, regardless of what I do. I want it to match only the first occurence. I have tried using the non-greedy operator but it stubbornly ...
3
votes
1answer
288 views
Maximum Coin Partition
Since standing at the point of sale in the supermarket yesterday, once more trying to heuristically find an optimal partition of my coins while trying to ignore the impatient and nervous queue behind ...
3
votes
3answers
214 views
How do I know if any problem can be solved by dynamic programming or greedy methods?
What properties should the problem have so that I can decide which method to use dynamic programming or greedy method?
3
votes
2answers
490 views
What is the difference between Greedy-Search and Uniform-Cost-Search?
When searching in a tree, my understanding of uniform cost search is that for a given node A, having child nodes B,C,D with associated costs of (10, 5, 7), my algorithm will choose C, as it has a ...
3
votes
5answers
2k views
Why does my non-greedy Perl regex match nothing?
I thought I understood Perl RE to a reasonable extent, but this is puzzling me:
#!/usr/bin/perl
use strict;
use warnings;
my $test = "'some random string'";
if($test =~ /\'?(.*?)\'?/) {
...
3
votes
2answers
747 views
How do I parse this correctly with spirit?
My situation: I'm new to Spirit, I have to use VC6 and am thus using Spirit 1.6.4.
I have a line that looks like this:
//The Description;DESCRIPTION;;
I want to put the text DESCRIPTION in a ...
2
votes
1answer
60 views
smallest match in regular expression
I have this kind of expression:
var string = [a][1] [b][2] [c][3] [d .-][] [e][4]
I woud like to match the fourth element [d .-][] which may contain any character (letters, numbers, punctuation, ...
2
votes
2answers
235 views
greedy algorithm for turned based game
I need to know how to implement a greedy algorithm in a card game
using C#. The game is a turn based game. When the AI should issue
some cards, it must be based on the latest state of other cards ...
2
votes
2answers
53 views
Regular expression troubles, can't seem to match what I want
I have a load of jibberish data with this somewhere in the middle:
"video_id": "hGosI8rBVe8"
And from this, I want to extract hGosI8rBVe8. Note that what I want to extract can be of any length, and ...
2
votes
2answers
519 views
php regex: lookbehind and lookahead and greediness problem
This should be simple but I'm a noob and I can't for the life of me figure it out. I'm trying to use regex to match text inside of special open/close tags: [p2][/p2]
So in this text:
apple ...
1
vote
3answers
116 views
Does a greedy approach work here?
Suppose there are N groups of people and M tables. We know the size of each group and the capacity of each table. How do we match the people to the tables such that no two persons of the same group ...
1
vote
1answer
67 views
how does floyds algorthm work and what is K?
I am having a hard time understanding Floyds algorithm i know how it works
as in i know how to do it by hand but i need to understand it through a computer
perceptive
This is what i am given
This ...
1
vote
4answers
94 views
A perl script that worked on Snow Leopard No Longer Works On Lion
I used to take a arbitrary set of files on my Desktop in the format of:
Screen Shot 2011-11-08 at 8.10.23 AM.png
Screen Shot 2011-11-08 at 8.08.57 AM.png
run a Perl script on them and ...
1
vote
1answer
180 views
Ferry loading problem
I have a difficulty with an undermentioned algorithmic problem:
There is a three-lane ferry in a port and in front of it there is a queue of N
vehicles. Each of them has got specified lenght in ...
1
vote
2answers
140 views
What is “Greedy Token Parsing”?
What is Greedy Token Parsing in PHP? I was reading a PHP coding guide which said the following...
"Always use single quoted strings unless you need variables parsed, and in cases where you do need ...
1
vote
2answers
165 views
Dijkstra algorithm problem
How to apply Dijkstra algorithm for a graph to find the MST in such a way that the resulting tree must have an edge between two given vertices? (ex: MST must include an edge between X and Y)
Thanks
1
vote
1answer
169 views
greedy multiple knapsack (minimize/reduce number of bins)
actually, I already have a partial answer for this question, but I'm wondering if this small piece of greedy code can be generalized to something closer to the optimal solution.
how I met this ...
1
vote
7answers
80 views
De-greedifying a regular expression in python
I'm trying to write a regular expression that will convert a full path filename to a short filename for a given filetype, minus the file extension.
For example, I'm trying to get just the name of the ...
1
vote
2answers
89 views
alternative greedy match
I want to make a greedy match to an alternative of either zero to 'm' consecutive occurences of 'a' or zero to 'n' consecutive occurences of 'b'. If I do
/a{,m}|b{,n}/
it will not work because when ...
1
vote
3answers
299 views
Choosing greedy algorithm to find lowest cost path
I have a pyramid of numbers. Each number represents the number of points associated. I need to use a greedy algorithm to find the path with the lowest cost to get from the top of the pyramid to the ...
1
vote
3answers
273 views
regex c# optional group - should act greedy?
having regex ~like this:
blablabla.+?(?:<a href="(http://.+?)" target="_blank">)?
I want to capture an url if I find one... finds stuff but I don't get the link (capture is always empty). Now ...
1
vote
2answers
940 views
Graph coloring algorithm (Greedy coloring)
I'm working on a graph-coloring project using Java. I need to implement four different graph coloring algorithms using four-color theorem. I have a problem with one of the algorithms named few ...
1
vote
3answers
1k views
Greedy, Non-Greedy, All-Greedy Matching in C# Regex
How can I get all the matches in the following example:
// Only "abcd" is matched
MatchCollection greedyMatches = Regex.Matches("abcd", @"ab.*");
// Only "ab" is matched
MatchCollection lazyMatches ...
1
vote
2answers
390 views
Greedy versus Non-Greedy matching in Python re
Please help me to discover whether this is a bug in Python (2.6.5), in my competence at writing regexes, or in my understanding of pattern matching.
(I accept that a possible answer is "Upgrade your ...
1
vote
1answer
113 views
In regex is it called lazy or non-greedy?
I originally heard it as nongreedy. Then on references 'on the web' i saw it called as lazy. Which is it?
1
vote
2answers
190 views
Ignoring an optional suffix with a greedy regex
I'm performing regex matching in .NET against strings that look like this:
1;#Lists/General Discussion/Waffles Win
2;#Lists/General Discussion/Waffles Win/2_.000
3;#Lists/General Discussion/Waffles ...
0
votes
0answers
26 views
Greedy Activity-Selector algorithm: n activities in smallest amout of lecture halls pseudo code
I have spent hours trying to understand the answer to this problem. I just don't get it. Can somebody please give me some pseudo code (preferably pseudo code similar to Java) of the algorithm that ...
0
votes
1answer
60 views
How to trace Knapsack [thingy] using greedy algorithm?
The question is how to trace a Knapsack problem with greedy algorithm using the following information?
P=[10,7,12,13,6,20]
W=[3,2,4,3,13,8]
M=15
n=6
I'd appreciate it if some one could help me ...
0
votes
1answer
60 views
Solving Heuristically Using Greedy Algorithm
I have a question on a test review thats asks "Which of the following is solved heuristically by a greedy method?"
A. Unweighted interval scheduling
B. 0/1 knapsack
C. Fractional knapsack
D. ...
0
votes
2answers
172 views
how to find maximum spanning tree using prims algorithm?
I want to modify Prim's algorithm so that it find the maximum spanning tree how can this be done
0
votes
2answers
60 views
Regular expression problem with ruby
I have a regular expression to match filenames which look like this:
name - subname goes here v4 03.txt
name - subname long 03.txt
name - subname v4 #03.txt
I want to extract the name and subname, ...