목차

이분 그래프

ps
링크acmicpc.net/…
출처BOJ
문제 번호1707
문제명이분 그래프
레벨골드 4
분류

이분 그래프

시간복잡도O(T*(V+E))
인풋사이즈T<=5, V<=20,000, E<=200,000
사용한 언어Python
제출기록69428KB / 1204ms
최고기록1000ms
해결날짜2023/04/04

풀이

코드

"""Solution code for "BOJ 1707. 이분 그래프".

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

import sys
from teflib import graph as tgraph


def main():
    K = int(sys.stdin.readline())
    for _ in range(K):
        V, E = [int(x) for x in sys.stdin.readline().split()]
        graph = tgraph.create_graph_from_input(V, E)

        try:
            tgraph.two_coloring(graph)
            print('YES')
        except ValueError:
            print('NO')


if __name__ == '__main__':
    main()