반응형
250x250
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
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- gcd #최대공약수 #백준 #2981 #검문
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #leetcode #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #그래프 #graph #python #leetcode #course #schedule
- 파이썬 #zip
- python #백준 #9375 #패션왕 #신해빈
- final #java #자바 #안드로이드
- leetcode #subsets #dfs #itertools #python
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- 2004 #조합 0의 개수 #백준
- Python #leetcode #dfs #그래프 #백트래킹
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- dfs #leetcode #python
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- dfs #python #leetcode
- dfs #leetcode #python #graph #그래프
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #bfs #이진트리 #파이썬 #리트코드
- leetcode #python #dfs #재귀
- 코틀린 #Do it #깡샘 #안드로이드
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- dfs #python #leetcode #combination
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 리트코드 #팰린드롬 #파이썬
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode/Python] 207. 코스 스케줄(Course Schedule) 본문
728x90
반응형
0을 완료하기 위해서는 1을 끝내야 한다는 것을 [0,1] 쌍으로 표현하는 n개의 코스가 있다.
코스 개수 n과 이 쌍들을 입력으로 받았을 때 모든 코스가 완료 가능한지 판별하라.
Example:
Input: numCourses = 2, prerequisites = [[1,0]]
Output: true
** 깔끔한 풀이 **
1. DFS로 순환 구조 판별
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
|
class Solution:
def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:
graph = collections.defaultdict(list)
# 그래프 구성
for x,y in prerequisites:
graph[x].append(y)
traced = set()
def dfs(i):
# 순환 구조이면 False
if i in traced:
return False
traced.add(i)
for y in graph[i]:
if not dfs(y):
return False
# 탐색 종료 후 순환 노드 삭제
traced.remove(i)
return True
# 순환 구조 판별
for x in list(graph):
if not dfs(x):
return False
return True
|
cs |
순환 구조라면 False를 출력해야 하므로
집합 자료형을 이용하여 같은 곳을 반복한다면 False를 출력할 수 있도록 한다.
그리고 중요한 점은
해당 노드를 이용한 모든 탐색이 끝나게 된다면
traced.remove(i)를 이용하여 방문 내역을 삭제해야 한다.
그렇지 않으면 형제 노드가 방문한 기록이 남아서 순환이 아닌데 순환이라 잘못 판단될 수 있다.
2. 가지치기를 이용한 최적화
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
32
33
34
35
36
37
38
39
40
41
|
import collections
import heapq
import sys
class Solution:
def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:
graph = collections.defaultdict(list)
# 그래프 구성
for x,y in prerequisites:
graph[x].append(y)
traced = set()
visited = set()
def dfs(i):
# 순환 구조이면 False
if i in traced:
return False
# 이미 방문했던 노드이면 True
if i in visited:
return True
traced.add(i)
for y in graph[i]:
if not dfs(y):
return False
# 탐색 종료 후 순환 노드 삭제
traced.remove(i)
# 탐색 종료 후 방문 노드 추가
visited.add(i)
return True
# 순환 구조 판별
for x in list(graph):
if not dfs(x):
return False
return True
|
cs |
해설:
이미 방문했던 노드는 순환 구조가 아니라고 인증 마크를 받은 곳이니까
굳이 다시 갈 필요가 없다.
따라서 집합 자료형 변수 visited를 만들어서
탐색을 종료할 때 방문한 노드를 추가해준다.
이렇게 했을 경우
1번 코드 대비 10배 정도의 효율을 보인다..!
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode/Python] 787. Cheapest Flights Within K Stops (0) | 2021.08.01 |
---|---|
[LeetCode/Python] 743. 네트워크 딜레이 타임(Network Delay Time) (feat.다익스트라 알고리즘) (0) | 2021.07.29 |
[LeetCode/Python] 332. 일정 재구성(Reconstruct Itinerary) (0) | 2021.07.29 |
[LeetCode/Python] 39. 조합의 합(Combination Sum) (0) | 2021.07.28 |
[LeetCode/Python] 77. 조합(Combinations) (0) | 2021.07.25 |