목차

도로 정비하기

ps
링크acmicpc.net/…
출처BOJ
문제 번호1739
문제명도로 정비하기
레벨플래티넘 1
분류

2-sat

시간복잡도O(T*(N+M+K))
인풋사이즈T<=10, N<=1000, M<=1000, K<=1000
사용한 언어Python
제출기록33620KB / 208ms
최고기록148ms
해결날짜2022/10/27

풀이

조건은 (v1 or v1) 으로 처리할수 있다. 출발점과 도착점의 세로좌표가 일치하는 경우에는 가로도로에 대해서 똑같이 조건을 넣으면 된다.

코드

"""Solution code for "BOJ 1739. 도로 정비하기".

- Problem link: https://www.acmicpc.net/problem/1739
- Solution link: http://www.teferi.net/ps/problems/boj/1739

Tags: [2-Sat]
"""

import sys
from teflib import twosat


def main():
    T = int(sys.stdin.readline())
    for _ in range(T):
        N, M, K = [int(x) for x in sys.stdin.readline().split()]
        two_sat = twosat.TwoSat(N + M)
        for _ in range(K):
            A, B, C, D = [int(x) for x in sys.stdin.readline().split()]
            if A == C and B == D:
                continue
            h1, v1, h2, v2 = A - 1, B + N - 1, C - 1, D + N - 1
            if B < D:
                h1, h2 = ~h1, ~h2
            if A < C:
                v1, v2 = ~v1, ~v2
            if A == C:
                two_sat.x_or_y(h1, h1)
            elif B == D:
                two_sat.x_or_y(v1, v2)
            else:
                # (h1 and v2) or (v1 and h2)
                two_sat.x_or_y(h1, v1)
                two_sat.x_or_y(h1, h2)
                two_sat.x_or_y(v2, v1)
                two_sat.x_or_y(v2, h2)

        print('Yes' if two_sat.is_satisfiable() else 'No')


if __name__ == '__main__':
    main()