일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 시바견
- kaggle
- 컴퓨터의 구조
- 715. Range Module
- LeetCode
- Protocol
- 밴픽
- 43. Multiply Strings
- iterator
- data science
- t1
- Generator
- 파이썬
- Python Code
- attribute
- Decorator
- Convert Sorted List to Binary Search Tree
- 315. Count of Smaller Numbers After Self
- Substring with Concatenation of All Words
- DWG
- shiba
- Python Implementation
- Python
- Class
- concurrency
- 프로그래머스
- Regular Expression
- 30. Substring with Concatenation of All Words
- 운영체제
- 109. Convert Sorted List to Binary Search Tree
Archives
- Today
- Total
Scribbling
프로그래머스: 네트워크 본문
그래프의 서로소 판별 문제이다.
아래 알고리즘을 그대로 사용한다.
https://focalpoint.tistory.com/12
def solution(n, computers):
edges = []
for i in range(n):
for j in range(i+1, n):
if computers[i][j] == 1:
edges.append([i, j])
parent = [0] * n
for i in range(n):
parent[i] = i
def find_parent(parent, a):
if parent[a] == a:
return a
parent[a] = find_parent(parent, parent[a])
return parent[a]
def union_parent(parent, a, b):
a = find_parent(parent, a)
b = find_parent(parent, b)
if a < b:
parent[b] = a
else:
parent[a] = b
for edge in edges:
u, v = edge
union_parent(parent, u, v)
for i in range(n):
find_parent(parent, i)
nets = set()
for i in range(n):
if parent[i] not in nets:
nets.add(i)
return len(nets)
'Computer Science > Coding Test' 카테고리의 다른 글
프로그래머스: 여행경로 (0) | 2021.11.01 |
---|---|
프로그래머스: 단어 변환 (0) | 2021.11.01 |
프로그래머스: 타겟 넘버 (0) | 2021.10.31 |
LeetCode: 115. Distinct Subsequences (0) | 2021.10.27 |
LeetCode: 113. Path Sum II (0) | 2021.10.27 |