====== 2-SAT - 3 ====== ===== 풀이 ===== * [[ps:2-sat]]에서 해가 존재여부를 확인하는 기본 문제. 2-sat 알고리즘을 그대로 구현해서 돌리면 된다. 시간복잡도는 O(n+m) ===== 코드 ===== """Solution code for "BOJ 11280. 2-SAT - 3". - Problem link: https://www.acmicpc.net/problem/11280 - Solution link: http://www.teferi.net/ps/problems/boj/11280 Tags: [2-sat] """ import sys from teflib import twosat def main(): N, M = [int(x) for x in sys.stdin.readline().split()] two_sat = twosat.TwoSat(N) for _ in range(M): i, j = [int(x) for x in sys.stdin.readline().split()] x = i - 1 if i > 0 else i y = j - 1 if j > 0 else j two_sat.x_or_y(x, y) print('1' if two_sat.is_satisfiable() else '0') if __name__ == '__main__': main() * Dependency: [[:ps:teflib:twosat#TwoSat|teflib.twosat.TwoSat]] {{tag>BOJ ps:problems:boj:플래티넘_4}}