일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- KAKAO BLIND RECRUITMENT
- python
- 이분탐색
- 백준
- 재귀함수
- 다익스트라
- DateTime
- 파이썬
- java
- 수학
- Set
- 위클리 챌린지
- lambda
- Re
- 동적 계획법
- 추석맞이 코딩챌린지
- 프로그래머스
- 그리디
- 정렬
- 카카오
- Combinations
- dfs
- divmod
- backjoon
- 정규식
- BFS
- heapq
- programmers
- 자바
- Zip
Archives
- Today
- Total
상상쓰
[프로그래머스] 네트워크 본문
https://programmers.co.kr/learn/courses/30/lessons/43162
DFS 알고리즘을 통하여 0 ~ n-1 을 분할한다. 컴퓨터의 번호가 check 안 되어 있을 때(check[i] == 0), 재귀함수를 통해 이어져 있는 컴퓨터들의 번호를 다 check 해주고(check[i] = 1) answer 에 1을 더해준다.
def solution(n, computers):
answer = 0
check = [0] * n
for i in range(n):
if check[i] == 0:
rf(i, computers, check)
answer += 1
return answer
def rf(i, computers, check):
if check[i] == 0:
check[i] = 1
for j in range(len(computers)):
if i != j and computers[i][j] == 1:
rf(j, computers, check)
print(solution(3, [[1, 1, 0], [1, 1, 0], [0, 0, 1]])) # 2
'Coding Test' 카테고리의 다른 글
[프로그래머스] 프린터 (0) | 2021.07.27 |
---|---|
[프로그래머스] 타겟 넘버 (0) | 2021.07.26 |
[백준] 스택 (0) | 2021.07.23 |
[프로그래머스] 튜플 (0) | 2021.07.23 |
[백준] 소수 최소 공배수 (0) | 2021.07.22 |
Comments