Viewing profile — mihaild
mihaild
HN member- Joined
- Mon, Aug 14, 2017, 8:40 PM UTC
- HN karma
- 10
- Public activity
- 8 items
- HN profile
- View on Hacker News ↗
About mihaild
No profile information was provided.
Recent public activity
-
comment
Comment #15041593
For example, there is 0.8776-approximation that runs in about O(n^{10^100}) https://arxiv.org/abs/1205.0458v2 There are also a lot of graph problems like "distinguish 3-colorable g…
-
comment
Comment #15021106
I don't. (it's always hard to find reference for easy problems)
-
comment
Comment #15014597
Formally, we run all possible programs in parallel: the 1st program runs for 1 step; the 1st and 2nd programs run for 1 additional step; programs 1-3 run for 1 additional step; ...…
-
comment
Comment #15013262
For example, algorithm that just copies it's input to output, unless input is proof of inconsistency of arithmetic, is correct algorithm to calculate function f(x) = x - yet it's u…
-
comment
Comment #15013209
Decision version of TSP is NP-complete. Optimization version is Cook-reducible to decision version of TSP. And it problem is Cook-reducible to P-problem, then the problem is itself…
-
comment
Comment #15013003
Epsilon isn't a problem, as TSP is NP-complete even for integer weights. Your solution needs some modification for case where we have multiple optimal cycles (as you will find edge…
-
comment
Comment #15012928
There is Universal Search algorithm. If P=NP, it finds a solution for solvable 3-SAT in polynomial time. (still not solving 3-SAT itself in case we will not be able to determine ru…
-
comment
Comment #15012736
First, use binary search to find answer. Then, remove edges one-by-one if removing this edge will not destroy all remaining path with shortest length, until your graph is reduced t…