Algorithm
-
[Leetcode] 565. Array Nesting array nestingAlgorithm/LeetCode 2021. 8. 12. 13:55
tags: LeetCode Algorithm Python A zero-indexed array A of length N contains all integers from 0 to N-1. Find and return the longest length of set S, where S[i] = {A[i], A[A[i]], A[A[A[i]]], ... } subjected to the rule below. Suppose the first element in S starts with the selection of element A[i] of index = i, the next element in S should be A[A[i]], and then A[A[A[i]]]… By that analogy, we stop..
-
[LeetCode] 1641. Count Sorted Vowel Strings #PythonAlgorithm/LeetCode 2021. 5. 13. 15:39
Given an integer n, return the number of strings of length n that consist only of vowels (a, e, i, o, u) and are lexicographically sorted. A string s is lexicographically sorted if for all valid i, s[i] is the same as or comes before s[i+1] in the alphabet. Example 1: Input: n = 1 Output: 5 Explanation: The 5 sorted strings that consist of vowels only are ["a","e","i","o","u"]. Example 2: Input:..
-
5 Simple Steps for Solving Any Recursive ProblemAlgorithm 2021. 5. 13. 12:59
1) What's the simplest possbile input? ex) x = 0 2) Play around with examples and visualize ! 3) Relate hard cases to simpler cases 4) Generalize the pattern 5) Write code by combining recursibe - pattern with the base code #출처 www.youtube.com/watch?v=ngCos392W4w&t=376s
-
#백준 1463번 #파이썬 #알고리즘 #문이과통합중Algorithm 2021. 5. 12. 13:40
### 문제설명 # 정수 X에 사용할 수 있는 연산은 다음과 같이 세 가지 이다. # X가 3으로 나누어 떨어지면, 3으로 나눈다. # X가 2로 나누어 떨어지면, 2로 나눈다. # 1을 뺀다. # 정수 N이 주어졌을 때, 위와 같은 연산 세 개를 적절히 사용해서 1을 만들려고 한다. 연산을 사용하는 횟수의 최솟값을 출력하시오. ### 제약조건 첫째 줄에 1보다 크거나 같고, 106보다 작거나 같은 정수 N이 주어진다. ### 예제입력 10 ### 예제출력 3 ### 문제해석 다이나믹 프로그래밍 문제. 문제를 해석하고 N 을 1~3까지 고정값으로 정해보면은 [0,1,1] 후에 N 에 4이상을 대입해보면은 DP[n] = DP[n-1] + 1 DP[n] = DP[n//3] + 1 DP[n] = DP[n//2..