반응형
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
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- python #백준 #9375 #패션왕 #신해빈
- gcd #최대공약수 #백준 #2981 #검문
- 파이썬 #zip
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #leetcode #python #graph #그래프
- dfs #그래프 #graph #python #leetcode #course #schedule
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #python #leetcode #combination
- dfs #python #leetcode
- leetcode #subsets #dfs #itertools #python
- Python #leetcode #dfs #그래프 #백트래킹
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- dfs #leetcode #python
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- 코틀린 #Do it #깡샘 #안드로이드
- leetcode #python #dfs #재귀
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #leetcode #python
- 2004 #조합 0의 개수 #백준
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- final #java #자바 #안드로이드
- dfs #bfs #이진트리 #파이썬 #리트코드
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- 리트코드 #팰린드롬 #파이썬
Archives
- Today
- Total
목록다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python (1)
멋진 개발자가 되고 싶다
[LeetCode/Python] 743. 네트워크 딜레이 타임(Network Delay Time) (feat.다익스트라 알고리즘)
K부터 출발해 모든 노드가 신호를 받을 수 있는 시간을 계산하라. 불가능할 경우 -1을 리턴한다. 입력값 (u, v, w)는 각각 출발지, 도착지, 소요 시간으로 구성되며, 전체 노드의 개수는 N으로 입력받는다. example: Input: times = [[2,1,1], [2,3,1], [3,4,1]], n = 4, k = 2 Output: 2 ** 깔끔한 풀이 1. 다익스트라 알고리즘 구현 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 class Solution: def networkDelayTime(self, times, n: int, k: int) -> int: graph = collections.defaultdict(list..
Algorithm Study/leetcode
2021. 7. 29. 16:31