active questions tagged np-complete - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:32:57Z http://stackoverflow.com/feeds/tag/np-complete http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/890171/algorithm-to-divide-a-list-of-numbers-into-2-equal-sum-lists 9 Algorithm to Divide a list of numbers into 2 equal sum lists becomingGuru 2009-05-20T20:49:50Z 2009-12-03T05:11:57Z <p>There is a list of numbers.</p> <p>The list is to be divided into 2 equal sized lists, with a minimal difference in sum. The sums have to be printed.</p> <pre><code>#Example: &gt;&gt;&gt;que = [2,3,10,5,8,9,7,3,5,2] &gt;&gt;&gt;make_teams(que) 27 27 </code></pre> <p>Is there an error in the following code algorithm for some case? </p> <p>How do I optimize and/or pythonize this?</p> <pre><code>def make_teams(que): que.sort() if len(que)%2: que.insert(0,0) t1,t2 = [],[] while que: val = (que.pop(), que.pop()) if sum(t1)&gt;sum(t2): t2.append(val[0]) t1.append(val[1]) else: t1.append(val[0]) t2.append(val[1]) print min(sum(t1),sum(t2)), max(sum(t1),sum(t2)), "\n" </code></pre> <p>Question is from <a href="http://www.codechef.com/problems/TEAMSEL/" rel="nofollow">http://www.codechef.com/problems/TEAMSEL/</a></p> http://stackoverflow.com/questions/1724673/is-it-correct-to-ask-to-solve-an-np-complete-problem-on-a-job-interview 8 Is it correct to ask to solve an NP-complete problem on a job interview? Pavel Shved 2009-11-12T19:19:16Z 2009-11-30T21:33:00Z <p>Today there was a <a href="http://stackoverflow.com/questions/1720737/from-an-interview-removing-rows-and-columns-in-an-nn-matrix-to-maximize-the-sum">question</a> on SO, where the author was given an NP-complete problem during an interview and he obviously hadn't been told that it was one.</p> <p>What is the purpose of asking such questions? What behavior does the interviewer expect when asking such things? Proof? Useful heuristics? And is it even legitimate to ask one if it's not a well-known NP-complete problem everyone should know about? (there's a <a href="http://en.wikipedia.org/wiki/List%5Fof%5FNP-complete%5Fproblems" rel="nofollow">plenty of them</a>)</p> http://stackoverflow.com/questions/1726126/is-the-board-game-go-np-complete 6 Is the board game "Go" NP complete? R.A 2009-11-12T23:24:48Z 2009-11-28T05:28:53Z <p>There are plenty of Chess AI's around, and evidently some are good enough to beat some of the world's greatest players.</p> <p>I've heard that many attempts have been made to write successful AI's for the board game <a href="http://en.wikipedia.org/wiki/Go%5F%28game%29" rel="nofollow">Go</a>, but so far nothing has been conceived beyond average amateur level.</p> <p>Could it be that the task of mathematically calculating the optimal move at any given time in Go is an NP-complete problem?</p> http://stackoverflow.com/questions/1767907/simple-reduction-np-completeness 0 Simple reduction (NP completeness) Allen 2009-11-20T02:16:00Z 2009-11-25T15:14:46Z <p>hey guys I'm looking for a means to prove that the bicriteria shortest path problem is np complete. That is, given a graph with lengths and weights, I need to know if a there exists a path in the graph from s to t with total length &lt;= L and weight &lt;= W.</p> <p>I know that i must take an NP complete problem and reduce it to this one. We have at our disposal the following problems to choose from: 3-SAT, independent set, vertex cover, hamiltonian cycle, and 3-dimensional matching.</p> <p>Any ideas on which may be viable?</p> <p>thanks</p> http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem 4 Best-case Running-time to solve an NP-Complete problem? Claudiu 2009-11-22T01:28:48Z 2009-11-23T17:06:29Z <p>What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of <a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">travelling salesman</a> is O(n!), but with dynamic programming it can be done in O(n^2 * 2^n). Is there any perhaps "easier" NP-Complete problem that has a better running time?</p> <p>I'm curious about exact solutions, not approximations.</p> http://stackoverflow.com/questions/376003/subset-summing 3 Subset summing dsimcha 2008-12-17T20:57:20Z 2009-11-16T22:32:19Z <p>I have a problem related to the <a href="http://en.wikipedia.org/wiki/Subset_sum_problem" rel="nofollow">subset sum problem</a> and am wondering if the differences make it easier, i.e. solvable in a reasonable amount of time.</p> <p>Given a value V, a set size L, and a sequence of numbers [1,N] S, how many size L subsets of S sum to less than V?</p> <p>This is different than the subset sum problem in three ways: </p> <ol> <li>I care how many subsets are <strong>less</strong> than a given value, not how many are <strong>equal</strong>.</li> <li>The subset sizes are fixed. </li> <li>I care <strong>how many</strong> sets sum to less than V, not just whether any exist.</li> </ol> <p>Is there any reasonably efficient algorithm to solve this?</p> <p>Edit: Obviously, this can be done in O(N choose L) using a combination generating algorithm. What I'm really interested in is clever hacks to significantly speed it up past that.</p> http://stackoverflow.com/questions/140406/how-can-i-programmatically-determine-how-to-fit-smaller-boxes-into-a-larger-packa 2 How can I programmatically determine how to fit smaller boxes into a larger package? polara 2008-09-26T16:03:10Z 2009-11-16T08:35:51Z <p>Does anyone know of existing software or algorithms to calculate a package size for shipping multiple items?</p> <p>I have a bunch of items in our inventory database with length, width and height dimesions defined. Given these dimensions I need to calculate how many of the purchased items will fit into predefined box sizes.</p> http://stackoverflow.com/questions/1270778/need-algorithm-to-group-files-of-varying-sizes-into-approximately-equal-blocks 3 Need Algorithm to group files of varying sizes into approximately equal blocks miCRoSCoPiC_eaRthLinG 2009-08-13T08:29:54Z 2009-08-14T15:07:01Z <p>Hey folks, I'm trying to figure out an algorithm that will help me group an assortment of files of varying sizes into say, 'n' groups of approximately equal size.</p> <p>Any ideas on how to achieve this?</p> http://stackoverflow.com/questions/628568/have-you-ever-had-a-business-requirement-that-turned-out-to-be-an-np-complete-pro 6 Have you ever had a business requirement that turned out to be an NP-Complete problem? Davy8 2009-03-10T00:45:16Z 2009-08-05T18:40:56Z <p>NP-completeness seems to me like one of those things that's mostly just theoretical and not really something you'd run into in a normal work environment. </p> <p>So I'm kind of curious if anyone's ever run into a problem at their job that turned out to be NP-complete, and that the design needed to be changed to accommodate for it?</p> http://stackoverflow.com/questions/1202540/how-to-find-what-numbers-in-a-set-add-up-to-another-given-number 2 How to find what numbers in a set add up to another given number? Even Mien 2009-07-29T19:36:15Z 2009-07-29T21:45:12Z <p>Here's a problem that I seem to be running into working with an accounting system.</p> <p>I have a set of transactions, but their sum does not equal the amount that the accounting department thinks that it should. They are not questioning the math, just the transactions being included :p</p> <p>Is there an algorithm that would help me determine which transactions in the set should not be included in order for the sum to match a given amount.</p> <pre><code>Given Set: 2 4 5 7 Given Sum Amount: 13 Result Set: 2 4 7 </code></pre> <p><strong>Edit:</strong> There's less than 100 transactions in the set. Does anyone have a C# example as there is not one on the <a href="http://stackoverflow.com/questions/141779/solving-the-np-complete-problem-in-xkcd">Solving the NP-complete problem in XKCD</a> question? </p> <p><em>Man, I should have gotten a CS degree.</em></p> http://stackoverflow.com/questions/1104268/how-to-design-acceptance-probability-function-for-simulated-annealing-with-multip 0 How to design acceptance probability function for simulated annealing with multiple distinct costs? flodin 2009-07-09T14:33:19Z 2009-07-21T10:52:47Z <p>I am using <a href="http://en.wikipedia.org/wiki/Simulated%5Fannealing" rel="nofollow">simulated annealing</a> to solve an NP-complete resource scheduling problem. For each candidate ordering of the tasks I compute several different costs (or energy values). Some examples are (though the specifics are probably irrelevant to the question):</p> <ul> <li><code>global_finish_time</code>: The total number of days that the schedule spans.</li> <li><code>split_cost</code>: The number of days by which each task is delayed due to interruptions by other tasks (this is meant to discourage interruption of a task once it has started).</li> <li><code>deadline_cost</code>: The sum of the squared number of days by which each missed deadline is overdue.</li> </ul> <p>The traditional acceptance probability function looks like this (in Python):</p> <pre><code>def acceptance_probability(old_cost, new_cost, temperature): if new_cost &lt; old_cost: return 1.0 else: return math.exp((old_cost - new_cost) / temperature) </code></pre> <p>So far I have combined my first two costs into one by simply adding them, so that I can feed the result into <code>acceptance_probability</code>. But what I would really want is for <code>deadline_cost</code> to always take precedence over <code>global_finish_time</code>, and for <code>global_finish_time</code> to take precedence over <code>split_cost</code>.</p> <p>So my question to Stack Overflow is: how can I design an acceptance probability function that takes multiple energies into account but always considers the first energy to be more important than the second energy, and so on? In other words, I would like to pass in <code>old_cost</code> and <code>new_cost</code> as tuples of several costs and return a sensible value .</p> <p><strong>Edit:</strong> After a few days of experimenting with the proposed solutions I have concluded that the only way that works well enough for me is Mike Dunlavey's suggestion, even though this creates many other difficulties with cost components that have different units. I am practically forced to compare apples with oranges.</p> <p>So, I put some effort into "normalizing" the values. First, <code>deadline_cost</code> is a sum of squares, so it grows exponentially while the other components grow linearly. To address this I use the square root to get a similar growth rate. Second, I developed a function that computes a linear combination of the costs, but auto-adjusts the coefficients according to the highest cost component seen so far.</p> <p>For example, if the tuple of highest costs is (A, B, C) and the input cost vector is (x, y, z), the linear combination is BCx + Cy + z. That way, no matter how high z gets it will never be more important than an x value of 1.</p> <p>This creates "jaggies" in the cost function as new maximum costs are discovered. For example, if C goes up then BCx and Cy will both be higher for a given (x, y, z) input and so will differences between costs. A higher cost difference means that the acceptance probability will drop, as if the temperature was suddenly lowered an extra step. In practice though this is not a problem because the maximum costs are updated only a few times in the beginning and do not change later. I believe this could even be theoretically proven to converge to a correct result since we know that the cost will converge toward a lower value.</p> <p>One thing that still has me somewhat confused is what happens when the maximum costs are 1.0 and lower, say 0.5. With a maximum vector of (0.5, 0.5, 0.5) this would give the linear combination 0.5*0.5*x + 0.5*y + z, i.e. the order of precedence is suddenly reversed. I suppose the best way to deal with it is to use the maximum vector to scale all values to given ranges, so that the coefficients can always be the same (say, 100x + 10y + z). But I haven't tried that yet.</p> http://stackoverflow.com/questions/210829/what-is-an-np-complete-problem 31 What is an NP-complete problem? Claudiu 2008-10-17T01:25:36Z 2009-06-28T14:26:01Z <p>What is an NP-complete problem? Why is it such an important topic in computer science?</p> http://stackoverflow.com/questions/1002697/what-is-the-difference-between-a-combinatorial-algorithm-and-a-linear-algorith 2 What is the difference between a 'combinatorial algorithm' and a 'linear algorithm'? Tobias 2009-06-16T16:51:21Z 2009-06-16T17:18:50Z <p>Or rather, what is the definition of a combinatorial algorithm and a linear algorithm, resp.?</p> <p>To make it clear because obviously the first responders misunderstood the question: I am not looking for a definition of an algorithm running in linear time vs non-linear time. A linear algorithm is somehow related to linear programming, which is a technique for finding or approximating solutions to linear optimization problems.</p> <p>Since NP-hard problems are so hard, there is a whole field trying to find approximate solutions. The traveling salesman problem for instance has several approximate solutions which run in polynomial time and produce a solution which is within a given bound of the best solution.</p> <p>Some of these approximating algorithms are called a linear algorithm, others a combinatorial algorithm; and the latter seems to be preferred (Why?). These are the two concepts I would like to understand.</p> http://stackoverflow.com/questions/975626/is-this-valid-mathematical-expression-problem-p-or-np 6 Is this "Valid mathematical expression" problem P, or NP? Toddeman 2009-06-10T13:32:41Z 2009-06-10T17:11:10Z <p>This question is purely out of curiosity. I am off school for the summer, and was going to implement an algorithm to solve this just for fun. That led to the above question, how hard is this problem?</p> <p>The problem: you are given a list of positive integers, a set of mathematical operators and the equal sign(=). can you create a valid mathematical expression using the integers (in the same order) and the operators (any number of times)? </p> <p>An example will should clarify any questions:</p> <p>given: {2, 3, 5, 25} , {+, -, *, /} , {=}<br /> output: YES</p> <p>the expression (only one i think) is (2 + 3) * 5 = 25. you only need to output YES/NO.</p> <p>I believe the problem is in NP. I say this because it is a decision problem (YES/NO answer) and I can find a non-deterministic poly time algorithm that decides it. </p> <p>a. non-deterministically select a sequence of operators to place between the integers.<br /> b. verify you answer is a valid mathematical expression (this can be done in constant time). </p> <p>In this case, the big question is this: Is the problem in P? (i.e. Is there a deterministic poly time algorithm that decides it?) OR Is the problem NP complete? (i.e. Can a known NP Complete problem be reduced to this? or equivalently Is every NP language poly time reducable to this problem?) OR neither? (i.e. problem in NP but not NP Complete)</p> <p>Note: This problem statement assumes P not equal to NP. Also, although I am new to Stack Overflow, I am familiar with the homework tag. This is indeed just curiosity, not homework :)</p> http://stackoverflow.com/questions/956699/possible-np-complete-problem 6 Possible NP-complete problem? Lasse V. Karlsen 2009-06-05T16:00:50Z 2009-06-08T07:09:46Z <p>I'd just like someone to verify whether the following problem is NP-complete or if there is actually a better/easier solution to it than simple brute-force combination checking.</p> <p>We have a sort-of resource allocation problem in our software, and I'll explain it with an example.</p> <p>Let's say we need 4 people to be at work during the day-shift. This number, and the fact that it is a "day-shift" is recorded in our database.</p> <p>However, we don't require just anyone to fill those spots, there's some requirements that needs to be filled in order to fit the bill.</p> <p>Of those 4, let's say 2 of them has to be a nurse, and 1 of them has to be doctors.</p> <p>One of the doctors also has to work as part of a particular team.</p> <p>So we have this set of information:</p> <blockquote> <p>Day-shift: 4<br /> &nbsp;&nbsp;&nbsp;1 doctor<br /> &nbsp;&nbsp;&nbsp;1 doctor, need to work in team A<br /> &nbsp;&nbsp;&nbsp;1 nurse </p> </blockquote> <p>The above is not the problem. The problem comes when we start picking people to work the day-shift and trying to figure out if the people we've picked so far can actually fill the criteria.</p> <p>For instance, let's say we pick James, John, Ursula and Mary to work, where James and Ursula are doctors, John and Mary are nurses.</p> <p>Ursula also works in team A.</p> <p>Now, depending on the order we try to fit the bill, we might end up deducing that we have the right people, or not, unless we start trying different combinations.</p> <p>For instance, if go down the list and pick Ursula first, we could match her with the "1 doctor" criteria. Then we get to James, and we notice that since he doesn't work in team A, the other criteria about "1 doctor, need to work in team A", can't be filled with him. Since the other two people are nurses, they won't fit that criteria either.</p> <p>So we backtrack and try James first, and he too can fit the first criteria, and then Ursula can fit the criteria that needs that team.</p> <p>So the problem looks to us as we need to try different combinations until we've either tried them all, in which case we have some criteria that aren't filled yet, even if the total number of heads working is the same as the total number of heads needed, or we've found a combination that works.</p> <p>Is this the only solution, can anyone think of a better one?</p> <p><hr /></p> <p><strong>Edit</strong>: Some clarification.</p> <p>Comments to this question mentions that with this few people, we should go with brute-force, and I agree, that's probably what we could do, and we might even do that, in the same lane that some sort optimizations look at the size of the data and picks different sort algorithms with less initial overhead if the data size is small.</p> <p>The problem though is that this is part of a roster planning system, in which you might have quite a few number of people involved, both as "We need X people on the day shift" as well as "We have this pool of Y people that will be doing it", as well as potential for a large "We have this list of Z criteria for those X people that will have to somehow match up with these Y people", and then you add to the fact that we will have a number of days to do the same calculation for, in real-time, as the leader adjusts the roster, and then the need for a speedy solution has come up.</p> <p>Basically, the leader will see a live sum information on-screen that says how many people are still missing, both on the day-shift as a whole, as well as how many people is fitting the various criteria, and how many people we actually ned in addition to the ones we have. This display will have to update semi-live while the leader adjusts the roster with "What if James takes the day-shift instead of Ursula, and Ursula takes the night-shift".</p> <p>But huge thanks to the people that has answered this so far, the constraint satisfaction problem sounds like the way we need to go, but we'll definitely look hard at all the links and algorithm names here.</p> <p>This is why I love StackOverflow :)</p> http://stackoverflow.com/questions/141779/solving-the-np-complete-problem-in-xkcd 24 Solving the NP-complete problem in XKCD Adam Tuttle 2008-09-26T20:30:38Z 2009-06-06T14:51:54Z <p>The problem/comic in question: <a href="http://xkcd.com/287/" rel="nofollow">http://xkcd.com/287/</a></p> <p><img src="http://imgs.xkcd.com/comics/np_complete.png" alt="General solutions get you a 50% tip" /></p> <p>I'm not sure this is the best way to do it, but here's what I've come up with so far. I'm using CFML, but it should be readable by anyone.</p> <pre><code>&lt;cffunction name="testCombo" returntype="boolean"&gt; &lt;cfargument name="currentCombo" type="string" required="true" /&gt; &lt;cfargument name="currentTotal" type="numeric" required="true" /&gt; &lt;cfargument name="apps" type="array" required="true" /&gt; &lt;cfset var a = 0 /&gt; &lt;cfset var found = false /&gt; &lt;cfloop from="1" to="#arrayLen(arguments.apps)#" index="a"&gt; &lt;cfset arguments.currentCombo = listAppend(arguments.currentCombo, arguments.apps[a].name) /&gt; &lt;cfset arguments.currentTotal = arguments.currentTotal + arguments.apps[a].cost /&gt; &lt;cfif arguments.currentTotal eq 15.05&gt; &lt;!--- print current combo ---&gt; &lt;cfoutput&gt;&lt;strong&gt;#arguments.currentCombo# = 15.05&lt;/strong&gt;&lt;/cfoutput&gt;&lt;br /&gt; &lt;cfreturn true /&gt; &lt;cfelseif arguments.currentTotal gt 15.05&gt; &lt;cfoutput&gt;#arguments.currentCombo# &gt; 15.05 (aborting)&lt;/cfoutput&gt;&lt;br /&gt; &lt;cfreturn false /&gt; &lt;cfelse&gt; &lt;!--- less than 15.05 ---&gt; &lt;cfoutput&gt;#arguments.currentCombo# &lt; 15.05 (traversing)&lt;/cfoutput&gt;&lt;br /&gt; &lt;cfset found = testCombo(arguments.currentCombo, arguments.currentTotal, arguments.apps) /&gt; &lt;/cfif&gt; &lt;/cfloop&gt; &lt;/cffunction&gt; &lt;cfset mf = {name="Mixed Fruit", cost=2.15} /&gt; &lt;cfset ff = {name="French Fries", cost=2.75} /&gt; &lt;cfset ss = {name="side salad", cost=3.35} /&gt; &lt;cfset hw = {name="hot wings", cost=3.55} /&gt; &lt;cfset ms = {name="moz sticks", cost=4.20} /&gt; &lt;cfset sp = {name="sampler plate", cost=5.80} /&gt; &lt;cfset apps = [ mf, ff, ss, hw, ms, sp ] /&gt; &lt;cfloop from="1" to="6" index="b"&gt; &lt;cfoutput&gt;#testCombo(apps[b].name, apps[b].cost, apps)#&lt;/cfoutput&gt; &lt;/cfloop&gt; </code></pre> <p>The above code tells me that the only combination that adds up to $15.05 is 7 orders of Mixed Fruit, and it takes 232 executions of my testCombo function to complete.</p> <p>Is there a better algorithm to come to the correct solution? Did I come to the correct solution?</p> http://stackoverflow.com/questions/111307/whats-pnp-and-why-is-it-such-a-famous-question 21 What's "P=NP?", and why is it such a famous question? raldi 2008-09-21T16:07:07Z 2009-03-27T20:21:33Z <p>The question of whether P=NP is perhaps the most famous in all of Computer Science. What does it mean? And why is it so interesting?</p> <p>Oh, and for extra credit, please post a proof of the statement's truth or falsehood. :)</p> http://stackoverflow.com/questions/600068/is-minimization-of-boolean-expressions-np-complete 2 Is minimization of boolean expressions NP-Complete? sgibbons 2009-03-01T16:42:23Z 2009-03-02T11:57:04Z <p>I know that boolean satisfiability is NP-Complete, but is the minimization/simplification of a boolean expression, by which I mean taking a given expression in symbolic form and producing an equivalent but simplified expression in symbolic form, NP-Complete? I'm not sure that there's a reduction from satisfiability to minimization, but I feel like there probably is. Does anyone know for sure?</p> http://stackoverflow.com/questions/306249/how-were-the-first-np-complete-problems-shown-to-be-np-complete 9 how were the first NP-complete problems shown to be NP-complete? brad 2008-11-20T18:00:27Z 2009-03-01T16:50:47Z <p>From the wikipedia entry on NP-Complete:</p> <p>"The easiest way to prove that some new problem is NP-complete is first to prove that it is in NP, and then to reduce some known NP-complete problem to it"</p> <p>I'm pretty sure that I understand this: If I have a problem, I can show that it is NP-Complete if I: </p> <ol> <li><p>show that it is in NP (a solution to the problem can be verified in polynomial time on a non-deterministic Turing machine)</p></li> <li><p>Show that a problem already known to be NP-Complete can be 'reduced' to the new problem</p></li> </ol> <p>So, my question is, how were the first NP-complete problems 'proven' to be NP-complete? At one time, the set of known NP-complete problems must have been zero, and this would have made it impossible to resort to step 2 in the above process. </p> <p>This makes me think that there is a different method for proof which I'm not aware of. Either that, or maybe the whole NP-complete property is 'assumed' for certain problems due to lack of a known polynomial time solution. (actually, having written this, I wouldn't be surprised if this is the case, but I'd like some guru-feedback either way). </p> http://stackoverflow.com/questions/535859/non-exponential-solution-to-maze-problem 11 Non-exponential solution to maze problem? Mike Douglas 2009-02-11T08:13:58Z 2009-02-17T20:32:54Z <p>Given a n*n-sized multi-headed acyclic graph where each node has at most three children and three parents, is there an non-exponential algorithm to identify whether a n-length path exists where no two nodes share the same value, and every value of a set is accounted for?</p> <p>Basically, I have an n*n maze where each space has a random value (1..n). I need to find a path (from the top to the bottom) of n nodes that includes every value.</p> <p>Right now I'm using a depth-first search, but that is <code>T(n) = 3T(n-1) + O(1)</code>, which is <code>O(3^n)</code>, a non-ideal solution.</p> <p>Either confirming my fears, or pointing me in the right direction would be much appreciated.</p> <p>Edit: to make this a little bit more concrete, here is a maze with solutions (solved using the depth-first solution).</p> <pre> 1 2 5 5 4 1 5 1 3 5 4 1 2 3 2 5 5 4 4 3 4 2 1 2 4 S3, 5, 1, 3, 4, 2, F4 S3, 5, 1, 3, 4, 2, F2 S3, 5, 1, 3, 4, 2, F4 S3, 5, 3, 2, 4, 1, F3 S3, 5, 3, 2, 4, 1, F3 S3, 5, 3, 2, 4, 1, F3 S4, 5, 3, 2, 4, 1, F3 S4, 5, 3, 2, 4, 1, F3 S4, 5, 3, 2, 4, 1, F3 S4, 5, 1, 3, 4, 2, F4 S4, 5, 1, 3, 4, 2, F2 S4, 5, 1, 3, 4, 2, F4 S5, 4, 3, 2, 5, 1, F3 13 total paths`</pre> http://stackoverflow.com/questions/542053/np-complete-reduction-in-theory 1 NP-Complete reduction (in theory) Batu 2009-02-12T16:11:29Z 2009-02-12T18:27:15Z <p>I want to embed 3 NP-Complete problems(2 of them are known to be NP-Complete, 1 of them is my own idea). I saw "<a href="http://stackoverflow.com/questions/141779/solving-the-np-complete-problem-in-xkcd">this question</a>" and got idea about reinterpreting embedding problems in theory:</p> <ul> <li>The Waiter is The Thief.</li> <li>Tables are store.</li> <li>Foods are valued items which has different weight.</li> <li>Thief know all the items' price and weight before the robbery.</li> <li>His target is most efficient robbery(max capacity of knapsack used, most valued items got) with robbing(getting at least 1 item) all stores(shortest way to completing robbery tour, also visit each store 1 time).</li> </ul> <p>This part is embedding 2 NP-Complete problems.</p> <p>My idea is, that more items mean more bag weight. More bag weight slow downs the thief exponentially. So another target of the thief should be finishing the robbery as quickly as he/she can.</p> <p>At this time, I'm not sure that my idea is actually NP-Complete. Maybe, "gravity" is not a NP-Complete Problem alone. But maybe it is in this context of the travelling salesman and knapsack problem.</p> <p>So my questions are:</p> <ol> <li><p>Is the slowing down of the thief NP-complete, too?</p></li> <li><p>Is it possible to reduce those three embedded problems to a simple NP-complete problem?</p></li> </ol> http://stackoverflow.com/questions/88850/has-anyone-got-a-polynomial-time-algorithm-for-find-a-hamiltonian-walk-in-a-graph 1 Has anyone got a polynomial time algorithm for find a Hamiltonian walk in a graph Nat 2008-09-18T00:13:29Z 2009-01-09T13:46:11Z <p>My algorithm is N factorial and is really slow.</p> http://stackoverflow.com/questions/130227/what-is-a-good-algorithm-for-compacting-records-in-a-blocked-file 2 What is a good algorithm for compacting records in a blocked file? InSciTek Jeff 2008-09-24T22:01:19Z 2008-09-26T18:29:42Z <p>Suppose you have a large file made up of a bunch of fixed size blocks. Each of these blocks contains some number of variable sized records. Each record must fit completely within a single block and then such records by definition are never larger than a full block. Over time, records are added to and deleted from these blocks as records come and go from this "database".</p> <p>At some point, especially after perhaps many records are added to the database and several are removed - many of the blocks may end up only partially filled.</p> <p>What is a good algorithm to shuffle the records around in this database to compact out unnecessary blocks at the end of the file by better filling up the partially filled blocks?</p> <p>Requirements of the algorithm:</p> <ul> <li>The compaction must happen in place of the original file without temporarily extending the file by more than a few blocks at most from its starting size</li> <li>The algorithm should not unnecessarily disturb blocks that are already mainly full</li> <li>Entire blocks must be read or written from/to the file at one time and one should assume the write operation is relatively expensive</li> <li>If records are moved from one block to another they must be added at their new location before being removed from their starting position so that in case the operation is interrupted no records are lost as a result of the "failed" compaction. (Assume that this temporary duplication of such records can be detected at recovery).</li> <li>The memory that can be used for this operation can only be on the order of perhaps several blocks which is a very small percentage of the overall file size</li> <li>Assume that records are on the order of 10 bytes to 1K bytes with an average size of maybe 100 bytes. The fixed sized blocks are on the order of 4K or 8K and that the file is on the order of 1000's of blocks.</li> </ul> http://stackoverflow.com/questions/14884/find-the-best-combination-from-a-given-set-of-multiple-sets 1 Find the best combination from a given set of multiple sets cmcculloh 2008-08-18T16:39:23Z 2008-09-26T18:27:48Z <p>Say you have a shipment. It needs to go from point A to point B, point B to point C and finally point C to point D. You need it to get there in five days for the least amount of money possible. There are three possible shippers for each leg, each with their own different time and cost for each leg:</p> <pre><code>Array ( [leg0] =&gt; Array ( [UPS] =&gt; Array ( [days] =&gt; 1 [cost] =&gt; 5000 ) [FedEx] =&gt; Array ( [days] =&gt; 2 [cost] =&gt; 3000 ) [Conway] =&gt; Array ( [days] =&gt; 5 [cost] =&gt; 1000 ) ) [leg1] =&gt; Array ( [UPS] =&gt; Array ( [days] =&gt; 1 [cost] =&gt; 3000 ) [FedEx] =&gt; Array ( [days] =&gt; 2 [cost] =&gt; 3000 ) [Conway] =&gt; Array ( [days] =&gt; 3 [cost] =&gt; 1000 ) ) [leg2] =&gt; Array ( [UPS] =&gt; Array ( [days] =&gt; 1 [cost] =&gt; 4000 ) [FedEx] =&gt; Array ( [days] =&gt; 1 [cost] =&gt; 3000 ) [Conway] =&gt; Array ( [days] =&gt; 2 [cost] =&gt; 5000 ) ) ) </code></pre> <p>How would you go about finding the best combination programmatically?</p> <p>My best attempt so far (third or fourth algorithm) is:</p> <ol> <li>Find the longest shipper for each leg</li> <li>Eliminate the most "expensive" one</li> <li>Find the cheapest shipper for each leg</li> <li>Calculate the total cost &amp; days</li> <li>If days are acceptable, finish, else, goto 1</li> </ol> <p>Quickly mocked-up in PHP (note that the test array below works swimmingly, but if you try it with the test array from above, it does not find the correct combination):</p> <pre><code>$shippers["leg1"] = array( "UPS" =&gt; array("days" =&gt; 1, "cost" =&gt; 4000), "Conway" =&gt; array("days" =&gt; 3, "cost" =&gt; 3200), "FedEx" =&gt; array("days" =&gt; 8, "cost" =&gt; 1000) ); $shippers["leg2"] = array( "UPS" =&gt; array("days" =&gt; 1, "cost" =&gt; 3500), "Conway" =&gt; array("days" =&gt; 2, "cost" =&gt; 2800), "FedEx" =&gt; array("days" =&gt; 4, "cost" =&gt; 900) ); $shippers["leg3"] = array( "UPS" =&gt; array("days" =&gt; 1, "cost" =&gt; 3500), "Conway" =&gt; array("days" =&gt; 2, "cost" =&gt; 2800), "FedEx" =&gt; array("days" =&gt; 4, "cost" =&gt; 900) ); $times = 0; $totalDays = 9999999; print "&lt;h1&gt;Shippers to Choose From:&lt;/h1&gt;&lt;pre&gt;"; print_r($shippers); print "&lt;/pre&gt;&lt;br /&gt;"; while($totalDays &gt; $maxDays &amp;&amp; $times &lt; 500){ $totalDays = 0; $times++; $worstShipper = null; $longestShippers = null; $cheapestShippers = null; foreach($shippers as $legName =&gt; $leg){ //find longest shipment for each leg (in terms of days) unset($longestShippers[$legName]); $longestDays = null; if(count($leg) &gt; 1){ foreach($leg as $shipperName =&gt; $shipper){ if(empty($longestDays) || $shipper["days"] &gt; $longestDays){ $longestShippers[$legName]["days"] = $shipper["days"]; $longestShippers[$legName]["cost"] = $shipper["cost"]; $longestShippers[$legName]["name"] = $shipperName; $longestDays = $shipper["days"]; } } } } foreach($longestShippers as $leg =&gt; $shipper){ $shipper["totalCost"] = $shipper["days"] * $shipper["cost"]; //print $shipper["totalCost"] . " &amp;lt;?&amp;gt; " . $worstShipper["totalCost"] . ";"; if(empty($worstShipper) || $shipper["totalCost"] &gt; $worstShipper["totalCost"]){ $worstShipper = $shipper; $worstShipperLeg = $leg; } } //print "worst shipper is: shippers[$worstShipperLeg][{$worstShipper['name']}]" . $shippers[$worstShipperLeg][$worstShipper["name"]]["days"]; unset($shippers[$worstShipperLeg][$worstShipper["name"]]); print "&lt;h1&gt;Next:&lt;/h1&gt;&lt;pre&gt;"; print_r($shippers); print "&lt;/pre&gt;&lt;br /&gt;"; foreach($shippers as $legName =&gt; $leg){ //find cheapest shipment for each leg (in terms of cost) unset($cheapestShippers[$legName]); $lowestCost = null; foreach($leg as $shipperName =&gt; $shipper){ if(empty($lowestCost) || $shipper["cost"] &lt; $lowestCost){ $cheapestShippers[$legName]["days"] = $shipper["days"]; $cheapestShippers[$legName]["cost"] = $shipper["cost"]; $cheapestShippers[$legName]["name"] = $shipperName; $lowestCost = $shipper["cost"]; } } //recalculate days and see if we are under max days... $totalDays += $cheapestShippers[$legName]['days']; } //print "&lt;h2&gt;totalDays: $totalDays&lt;/h2&gt;"; } print "&lt;h1&gt;Chosen Shippers:&lt;/h1&gt;&lt;pre&gt;"; print_r($cheapestShippers); print "&lt;/pre&gt;"; </code></pre> <p>I think I may have to actually do some sort of thing where I literally make each combination one by one (with a series of loops) and add up the total "score" of each, and find the best one....</p> <p>EDIT: To clarify, this isn't a "homework" assignment (I'm not in school). It is part of my current project at work.</p> <p>The requirements (as always) have been constantly changing. If I were given the current constraints at the time I began working on this problem, I would be using some variant of the A* algorithm (or Dijkstra's or shortest path or simplex or something). But everything has been morphing and changing, and that brings me to where I'm at right now.</p> <p>So I guess that means I need to forget about all the crap I've done to this point and just go with what I know I should go with, which is a path finding algorithm.</p> http://stackoverflow.com/questions/83547/algorithm-to-find-which-numbers-from-a-list-of-size-n-sum-to-another-number 5 Algorithm to find which numbers from a list of size n sum to another number Sam Meldrum 2008-09-17T14:00:40Z 2008-09-26T18:26:35Z <p>I have a decimal number (let's call it <strong>goal</strong>) and an array of other decimal numbers (let's call the array <strong>elements</strong>) and I need to find all the combinations of numbers from <strong>elements</strong> which sum to goal.</p> <p>I have a preference for a solution in C# (.Net 2.0) but may the best algorithm win irrespective.</p> <p>Your method signature might look something like:</p> <pre><code>public decimal[][] Solve(decimal goal, decimal[] elements) </code></pre>