I want to implement 2-SAT problem for 100000 literals. So there would be 200000 vertices. So I am stuck on having a array of all reachable vertices from each vertex, space complexity of O(200000^2) which is infeasible So please suggest a solution for this. And please throw some light on efficient implementation of 2-SAT problem.
I want to implement 2-SAT problem for 100000 literals. So there would be 200000
Share
From wikipedia:
I won’t pretend to understand most of that paragraph, but it would appear that there is an algorithm which can be used to solve the 2-SAT problem, and it is described within that referenced document (A linear-time algorithm for testing the truth of certain quantified boolean formulas). It can apparently be purchased online for about $20 USD. I’m Not sure if that’s helpful or not, but there it is!
update: A free PDF of the same document can be found here. Credit goes to liori for the find.