일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Python
- 코틀린
- 11기
- 코테
- lcm
- 순열
- 9095
- permutation
- 11054
- 11057
- Android
- LCS
- 백준
- 홈화면
- 괄호
- expo
- 앱
- 나머지
- 안드로이드
- 매일11시
- 1260
- 뒤로가기
- Kotlin
- itertools
- Combination
- 1182
- 최소공배수
- 6603
- 파이썬
- 11053
Archives
- Today
- Total
목록1958 (1)
황소개발자
백준 1958 파이썬 python : LCS 3 @@황소처럼 우직하게@@
처음엔 아래 코드와 같이, a b c 의 lcs 는 (a b 의 lcs) 와 (c) 의 lcs 이겠지 생각했으나 틀렸다. def lcs(a, b): dp = [[0 for i in range(len(a) + 1)] for j in range(len(b) + 1)] for i in range(1, len(b) + 1): for j in range(1, len(a) + 1): if a[j - 1] == b[i - 1]: dp[i][j] = dp[i - 1][j - 1] + 1 else: dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]) return findit(a, dp) def findit(a, dp): ans = '' now = dp[-1][-1] y = len(dp) - 1 ..
백준 문제 풀이
2020. 2. 20. 16:24