NP-Complete refers to the hardest known problems within the complexity class NP. The "Traveling salesman problem" is one of the most widely known NP-Complete problem.

learn more… | top users | synonyms

2
votes
0answers
97 views

Shortest weight constrained path to Partition reduction

I am trying to prove NP-completness of a shortest weight constrained path problem. I have read multiple papers, but for love of god, cannot figure out how to show a reduction of this to partition ...
-1
votes
1answer
25 views

NP-complete, proofing issues [closed]

A little bit of perspective, I'm relativly new to P, NP, coNp and NP-complete problems so go easy on me please. What I've got is a language called CNFSAT that is CNFSAT = { ø | ø is on the cnf form ...
0
votes
0answers
54 views

Proving NP Completeness [migrated]

We are given a graph G, integer b < |E|, and subset F in E. The problem is to detect whether there is a cycle in the graph with length at most b and includes each edge in F. Prove that this is NP ...
0
votes
2answers
43 views

On-call night scheduling algorithm

I work in a residence hall at my college as an RA, and each night we need two RAs to be on call (able to respond to incidents and emergencies). Each month, RAs submit the nights they cannot be on ...
-6
votes
0answers
33 views

Show that the following is NP-complete [closed]

In a directed graph, the indegree of a node is the number of incoming edges and the outdegree is the number of outgoing edges. Show that the following problem is NP-complete. Given an undirected graph ...
-1
votes
0answers
33 views

For graph G, does G contain a set of vertices such that 1 endpoint of every edge is in the set? [closed]

We got this question for a review for our final an our study group is stumped. We are supposed to prove that this is NP-complete. We talked to our prof and she the hint that she gave us was to reduce ...
3
votes
1answer
73 views

Verification algorithm for minimum vertex cover?

We know that the minimum vertex cover is NP complete, which means that it is in the set of problems that can be verified in polynomial time. As I understand it, the verification process would ...
0
votes
0answers
28 views

Proof that the Dominating Set is NP-Complete

Take a triangle with vertices u,v,v'. As all triangles are, it is strongly connected. Correct me if I'm wrong, but it has a dominating set of size 1. As I work through the proofs to try and reduce ...
0
votes
1answer
41 views

Boolean formula encoding

i am wondering how many bits required to encode a boolean formula like @(x1,x2,x3,x4) = (x1 OR x2 OR NOT(x3) OR x4) AND ((NOT)x2 OR x3) AND (x1 OR (NOT)x4) @ is an instance of SAT. I think it ...
0
votes
0answers
57 views

Reduction from Maximum independent set to Dominating set to prove the Dominating set is NP-complete

I know of the reduction from the Vertex cover to Dominating set. However, I was seeing if I could get a reduction from the maximum independent set problem straight to the Dominating set problem in ...
1
vote
0answers
84 views

Sudoku polynomial algorithm?

I have a project to do for a complexity and problem solving course, and I've decided to base the project on Sudoku. From the research I've done, Sudoku is an NP-Complete problem (which is required for ...
1
vote
2answers
73 views

NP-complete, no efficient algorithm?

I don't know much about NP-complete but read about it here and there. The book Introduction to Algorithm, I'm studying(by myself) states "Although no efficient algorithm for an NP-complete problem has ...
1
vote
2answers
102 views

Does the complexity of strongly NP-hard or -complete problems change when their input is unary encoded? [closed]

Does the difficulty of a strongly NP-hard or NP-complete problem (as e.g. defined here http://en.wikipedia.org/wiki/Strongly_NP-complete) change when its input is unary instead of binary encoded? ...
1
vote
3answers
118 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 ...
0
votes
0answers
50 views

“Naked Permutation” Sudoku strategy

First some notation: A group G is either a row, column, or block of cells. A cell c has domain D(c) containing all possibilities for that cell. S is the set of all symbols (e.g. [1-9] for 9x9 ...
0
votes
1answer
51 views

How I can prove that 2-CNF is not NP-complete?

I want to know how I can show that 2-CNF is not NP-hard or NP complete? Can anyone help me in this regard. I need the solution urgently.
0
votes
0answers
46 views

Using SAT-solvers to develop an NP-hardness reduction [closed]

I am looking for examples "automatic gadget generation" using SAT-solvers, similar to Ruepp and Holzer, "The computational complexity of the Kakuro puzzle, revisited", in LNCS 6099. They mention ...
4
votes
1answer
119 views

Double exponential problems? [closed]

Are there any significant problems in computer science that can only be solved in double exponential time ? And if they exist then to which class of problems do they belong ?
2
votes
3answers
117 views

Is it necessary for NP problems to be decision problems ?

Professor Tim Roughgarden from Stanford University while teaching a MOOC said that solutions to problems in the class NP must be polynomial in length. But the wikipedia article says that NP problems ...
2
votes
1answer
100 views

NP class : Why polynomial length outputs?

For a problem to qualify for the NP class : The solution to the problem must have a polynomial output length ,and The solution must be verifiable in polynomial time . What is the significance ...
3
votes
1answer
134 views

Reduction of Leaf constrained MST problm to Hamiltonian path problm .

It is well known that computing a spanning tree that has the minimum possible number of leaves is NP complete. But I cannot figure out a polynomial time reduction of this problem to the hamiltonian ...
4
votes
3answers
92 views

Is it compulsory that the 'reduction of problm be done in polynomial time' for it to be NP complete?

For a problem to be NP complete, it must belong to the class NP and there must be a polynomial time algorithm to reduce it to an NP complete problem . Now what if we only have an exponential time ...
0
votes
1answer
49 views

Showing that the decison version of an NP-complete language is NP-complete

Say you are given a combinatorial optimization problem A. Let us assume WLOG that the problem is the clique problem. How can I show that if clique is NP-complete, then the decision version of clique ...
1
vote
1answer
91 views

Bin-packing solution: what's going on with this?

I've attempted to implement a solution to a bin-packing-type problem, mostly in the way described by Dietrich Epp. I don't do Haskell yet so I wrote something in C++. For a wall width lower than a ...
0
votes
2answers
280 views

can some sorting be P, NP, and NP-Complete?

I am quite confused, and this is my thought after some reading: P is in NP and NP is in NP-Complete. Therefore, all P could be in NP and NP-Complete? Does that mean there are sorting algorithms ...
3
votes
2answers
149 views

Which of these languages is NP-complete?

I was searching the difference between NP and NP-complete problems. I came upon this great answer in StackOverflow by Jason. About NP-complete problems, he said An NP problem X for which it is ...
0
votes
1answer
130 views

NP hard but not NPC

I have seen couple of scheduling problem which says that the problem is NP hard. My question is that 1)when we say a problem is NP hard does it mean that it is not in NP?because if it is NP we say ...
0
votes
1answer
490 views

Dynamic Programming for TSP

after reading about TSP in wiki, I found it stating DP is a exact algorithm for TSP problem, but I'm confused that if they have a exact algorithm for a problem, should the problem still be classified ...
0
votes
1answer
57 views

When NP complete becomes NP hard

Generally, assuming we have a NPC problem. Adding more constraint to it (making it more difficult), is it possible that problem become NPH? I know the difference between NPC and NPH but I don't know ...
0
votes
1answer
109 views

Np completeness - Need some clarification in reduction

I wanted some clarification in a concept. For proving that a problem is NP complete, we use reductions. Now suppose I have L<=L'. has the reduction to be from L to L' or can I do it it the ...
0
votes
0answers
47 views

Np completeness - Unable to decide the reduction approach

Given that the Hamiltonian cycle problem is NP complete, I want to prove that the following is NP complete. Given an undirected graph G(V,E), and s ant t belongs to V, does there exist a path from s ...
0
votes
5answers
715 views

Reducing TSP to Hamiltonian circuit

HIHow i can convert TSP to Ham Circuit problem. Means if i have solution to Ham circuit problem then i will use that solution to solve TSP problem. Thanks
0
votes
0answers
51 views

Polynomial Reductions

I'm looking for a book (for a source actually) for almost all available Polynomial Reductions. I already know how these reduction can be done: 3-SAT to IS, Knapsack to TSP, IS to VC and VC to IS. I ...
5
votes
2answers
298 views

Solving an extension of the Shortest Hamiltonian Path

I was thinking about an extension to the Shortest Hamiltonian Path (SHP) problem, and I couldn't find a way of solving it. I know it is NP-complete, but I figured I'd ask here for ideas, since I do ...
0
votes
1answer
78 views

Can it be proven no polynomial algorithm exists for an NP-Complete prob.?

I can't really seem to grasp what it really means to say a problem is NP-Complete. Could anyone help me with the following question? An NP-complete problem is a problem for which one can prove that ...
0
votes
2answers
118 views

Which metaheuristics are appropriate for building a Minesweeper solver?

I have to build a Minesweeper solver, but don't really know where to start. The problem is, I have to utilize some metaheuristic algorithm, like ant colony optimization, simulated annealing, genetic ...
0
votes
1answer
230 views

graph coloring and NP completeness

I am having trouble understanding the NP completeness of graph coloring. If I assume a greedy coloring strategy (http://en.wikipedia.org/wiki/Graph_coloring#Greedy_coloring) with DFS, then I seem to ...
0
votes
0answers
75 views

Project on np-complete problems [closed]

I want to make a 1 year project during my B.Tech. I want to work and analyse approximation algorithms of some np-complete problems. Please tell some application where I can do this on the background.
0
votes
0answers
131 views

Graph partitioning based on nodes and edges weights

I have a graph G=(V,E) that both edges and nodes have weights. I want to partition this graph to create equal sized partitions. The definition of the size of partition is sum(vi)-sum(ej) where vi is ...
1
vote
2answers
225 views

bin packing with overlapping objects

I have some bins with different capacities and some objects with specified size. The goal is to pack these objects in the bins. Until now it is similar to the bin-packing problem. But the twist is ...
0
votes
0answers
182 views

Building sentences from a word dictionary and letter frequencies [closed]

Peace to all, I have a dictionary of 78,000 words and 14 letters with different frequncies that add up to 78 total letter including repetitions (but not all letters of the alphabet). I would like to ...
2
votes
2answers
257 views

2D Bin Packing with Multiple Size Bins

Lets say we have multiple sizes of bins defined by Length x Width , those could be called "raw material" sizes. I need to cut certain amount of tables (rectangles, in guillotine form) out of that ...
4
votes
2answers
659 views

find the maximum number of vertex-disjoint paths in a graph with a constraint

Given a undirected graph G=(V,E), each edge is associated with a non-negative value. How to find the maximum number of vertex-disjoint paths from s to t on the graph G, with a constraint that the sum ...
0
votes
0answers
52 views

NP-completeness proof for modified graph contractability [closed]

I know that graph contractability is NP-complete. To be specific given G=(V1,E1) and H=(V2,E2), can a graph isomorphic to H be obtained from G by a sequence of edge contractions ? However my problem ...
2
votes
1answer
109 views

Is the 0-1 Knapsack that each item has the same weight NP-complete?

The 0-1 Knapsack problem is known as NP-complete. But if the weight for each item are the same, the problem is still NP-complete?
0
votes
0answers
103 views

Heuristic algorithms for constrained memory DAG traversal scheduling

I am trying to solve a so-called "pebble game" problem to determine whether my large computation can fit into 4 TB of RAM. The original description of the pebble game is given in ...
2
votes
0answers
132 views

Is this NP-Complete

My problem is similar to the problem here http://cs.stackexchange.com/questions/2244/need-a-np-complete-proof-on-an-example , but it is a little different. Here is my problem: There are three ...
0
votes
1answer
347 views

Divide list into two equal parts algorithm

Related questions: Algorithm to Divide a list of numbers into 2 equal sum lists divide list in two parts that their sum closest to each other Let's assume I have a list, which ...
5
votes
3answers
173 views

minimal multiplications vs a set-cover issue

I have a set I ={P1, P2, ..., Pm} , and n finite subsets of I, denoted by R1,R2,...,Rn as follows: R1 = {P1, P2} R2 = {P2, P4} R3 = {P2, P3, P4} R4 = {P1, P2, P4} .... where Pi denotes an ...
5
votes
3answers
119 views

Subset Inference NP-complete?

Consider the following problem: There are N coins numbered 1 to N. You can't see them, but are given M facts about them of the form: struct Fact { set<int> positions int num_heads } ...

1 2 3