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
- 백준 17626
- 백준 16236
- 백준 15685
- 파이썬
- 백준 파이썬
- 백준 16235
- Coroutine
- with recursive
- spring cloud
- 프로그래머스
- re.split
- JPA
- 백준 16719
- MSA
- springboot
- 백준 17779
- 프로래머스
- MySQL
- Spring
- java 기술면접
- JVM
- 백준 19238
- spring oauth
- sql 기술면접
- java
- Spring Boot
- spring security
- Kotlin
- 백준
- 웹어플리케이션 서버
Archives
- Today
- Total
목록프로그래머스 네트워크 (1)
시작이 반
[프로그래머스] 네트워크(python 파이썬)
dfs, bfs를 사용하여 풀수있다. dfs로 문제를 해결하였다. dfs가 끝난이후 해당 node를 방문했는지 확인하고 그룹수를 증가시킨다. visited = list() def solution(n, computers): global visited visited = [False] * n answer = 0 for i in range(n): if not visited[i]: dfs(n, computers, i) answer += 1 return answer def dfs(n, computers, start): global visited, count visited[start] = True for i in range(n): if computers[start][i] == 1 and not visited[i]: ..
알고리즘/Programmers
2021. 3. 10. 18:26