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
- php
- udemy
- Math
- DP
- Algospot
- Python
- BASIC
- BFS
- Algorithm
- programmers
- 따배씨
- dfs
- 따라하면서 배우는 C언어
- web
- sorting
- BOJ
- 백준
- greedy
- 인프런
- server
- JavaScript
- String
- 따라하며 배우는 C언어
- C
- 종만북
- 정수론
- 생활코딩
- Cleancode
- graph
- C언어
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 11724 / 연결 요소의 개수 / Python 파이썬 본문
[BOJ] 11724 / 연결 요소의 개수 / Python 파이썬
https://www.acmicpc.net/problem/11724
풀이
그래프를 구성하는 노드와 엣지를 입력받아, 연결되어 있는 그래프의 수를 구하는 문제이다.
BFS 로 그래프의 구성을 확인하였고, BFS 는 queue 로 구현하였다.
import sys
def countGraph(N, graph):
if N == 1:
return 1
visited = []
res = 0
for n in range(1, N+1):
if n not in visited:
res += 1
queue = [n]
while queue:
f = queue.pop(0)
visited.append(f)
for t in range(1, N+1):
if graph[f][t] and t not in visited:
queue.append(t)
visited.append(t)
return res
N, M = map(int, sys.stdin.readline().split())
graph = [[0 for _ in range(N+1)] for _ in range(N+1)]
for _ in range(M):
u, v = map(int, sys.stdin.readline().split())
graph[u][v] = 1
graph[v][u] = 1
print(countGraph(N, graph))
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 10451 / 순열 사이클 / Python 파이썬 (0) | 2021.06.07 |
---|---|
[BOJ] 1707 / 이분 그래프 / Python 파이썬 (0) | 2021.06.07 |
[BOJ] 1260 / DFS와 BFS / Python 파이썬 (0) | 2021.06.05 |
[BOJ] 1676 / 팩토리얼 0의 개수 / Python 파이썬 (0) | 2021.06.04 |
[BOJ] 10872 / 팩토리얼 / Python 파이썬 (0) | 2021.06.04 |
Comments