[BaekJoon 1976 : Graph Search, Python] - 여행가자 (dfs ver.)
백준 여행가자 : 골드 4 Solution import sys sys.setrecursionlimit(10000000) input = sys.stdin.readline from collections import...
2021, Dec 06 — 3 minute read백준 여행가자 : 골드 4 Solution import sys sys.setrecursionlimit(10000000) input = sys.stdin.readline from collections import...
2021, Dec 06 — 3 minute read백준 13904 과제 : 골드 3 Solution import sys input = sys.stdin.readline from heapq import...
2021, Dec 05 — 2 minute read백준 7662 이중 우선순위 큐 : 골드 5 Solution import sys from heapq import *...
2021, Dec 04 — 2 minute read백준 1446 주간미팅 : 골드 4 Solution import sys from heapq import * input =...
2021, Nov 10 — 2 minute read문제 백준 트리의 부모 찾기 : 실버 2 Solution import sys sys.setrecursionlimit(10000000) from collections import...
2021, Nov 09 — 2 minute read백준 1446 녹색 옷 입은 애가 젤다지? : 골드 4 Solution BFS + DIKJSTRA +...
2021, Nov 05 — 3 minute read백준 1446 지름길 : 실버 1 Solution 1. 짧은 풀이 다익스트라 알고리즘으로 분류되었지만, 풀이 방식은...
2021, Nov 04 — 3 minute read백준 2225 합분해 : 골드 5 Solution import sys input = sys.stdin.readline n, k =...
2021, Nov 03 — 2 minute read백준 10146 격자상의 경로 : 실버 1 Solution import sys input = sys.stdin.readline n, m,...
2021, Nov 02 — 3 minute read이어드림 12주차 알고리즘 스터디 문제 : 도도새의 절약 정신(상) Solution import sys input = sys.stdin.readline...
2021, Nov 01 — 2 minute read백준 11053 가장 긴 증가하는 수열2 : 실버 2 Solution DP Memoization 활용(Bottom-up) import sys...
2021, Nov 01 — 1 minute read이어드림 12주차 알고리즘 스터디 문제 : 거스름돈 주기(상) Solution 정답 코드 import sys # from...
2021, Nov 01 — 2 minute read백준 15486 퇴사 2 : 실버 1 Solution DP Memoization 활용(Bottom-up) import sys input =...
2021, Oct 29 — 2 minute read백준 14501 퇴사 1 : 실버 3 Solution DP Memoization 활용(Bottom-up) import sys input =...
2021, Oct 29 — 2 minute read이어드림 12주차 알고리즘 스터디 문제 : 사냥꾼 도도새(중) Solution DP Memoization 활용 (Bottom-up) import sys...
2021, Oct 28 — 2 minute read백준 1463 1로 만들기 : 실버 3 Solution 1. DP Memoization 활용(Bottom-up) DP[k] 는 어차피...
2021, Oct 28 — 3 minute read백준 토마토 농장 : 실버 1 Solution import sys from collections import deque input =...
2021, Oct 19 — 2 minute read백준 11866 요세푸스 순열 : 실버 4 Solution import sys from collections import deque n,...
2021, Oct 19 — 1 minute read프로그래머스 LvL 3 : 여행경로 Solution from collections import defaultdict def solution(tickets): graph = defaultdict(list)...
2021, Oct 18 — 2 minute read백준 1874 스택 수열 : 실버 2 Solution import sys n = int(input()) data =...
2021, Oct 18 — 2 minute read백준 1260 DFS와 BFS : 실버 2 Solution # DFS - 재귀호출 사용 import sys...
2021, Oct 18 — 2 minute read백준 나이트의 이동 : 실버 2 Solution from collections import deque def knightMove(l, start, end):...
2021, Oct 18 — 2 minute read