Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BOJ
- greedy
- server
- BFS
- BASIC
- Python
- String
- Algospot
- sorting
- 따배씨
- programmers
- Math
- 인프런
- graph
- Cleancode
- udemy
- web
- Algorithm
- 따라하며 배우는 C언어
- 따라하면서 배우는 C언어
- C
- 정수론
- dfs
- DP
- C언어
- 종만북
- JavaScript
- 백준
- php
- 생활코딩
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 1707 / 이분 그래프 / Python 파이썬 본문
[BOJ] 1707 / 이분 그래프 / Python 파이썬
https://www.acmicpc.net/problem/1707
풀이
이분 그래프 (Bipartite Graph) 를 판별하는 문제이다.
그래프를 탐색하면서 node 에 -1 을 곱해주는 것으로 이분 그래프를 검사하였다.
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
N = int(input())
nums = list(map(int, input().split()))
nums = [0] + nums
cnt = 0
for f in range(1, N+1):
if nums[f] < 0:
continue
cnt += 1
t = nums[f]
nums[f] = -1
while True:
if t < 0:
break
f = t
t = nums[f]
nums[f] = -1
print(cnt)
※ 이분 그래프에 대해 알고 있었다면 더 쉽게 풀수 있었을 것이다.
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 2331 / 반복수열 / Python 파이썬 (0) | 2021.06.07 |
---|---|
[BOJ] 10451 / 순열 사이클 / Python 파이썬 (0) | 2021.06.07 |
[BOJ] 11724 / 연결 요소의 개수 / Python 파이썬 (0) | 2021.06.05 |
[BOJ] 1260 / DFS와 BFS / Python 파이썬 (0) | 2021.06.05 |
[BOJ] 1676 / 팩토리얼 0의 개수 / Python 파이썬 (0) | 2021.06.04 |
Comments