Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[주제 제안] Longest Common Subsequence #15

Open
cloneot opened this issue Feb 20, 2020 · 0 comments
Open

[주제 제안] Longest Common Subsequence #15

cloneot opened this issue Feb 20, 2020 · 0 comments
Labels
주제 제안 블로그 포스팅 주제 제안

Comments

@cloneot
Copy link

cloneot commented Feb 20, 2020

주제 이름

  • Longest Common Sequence

주제 소개 (관련 자료 링크 포함)

문자열 a, b가 있을 때,

  1. LCS 역추적을 공간복잡도 O(|a|)로 하는 방법 (Hirschberg's algorithm)
    https://en.wikipedia.org/wiki/Hirschberg%27s_algorithm
    https://koosaga.com/243
  2. |a|<=100, |b|<=100만 일 때, LCS 구하는 방법 (O(|a|^2 log |b|)가 있다고 함)
  3. |a|, |b| <= 5만 일 때, LCS 구하는 방법 (http://www.secmem.org/blog/2019/09/12/lcs-with-bitset/)

등 LCS와 관련된 것들

대략적인 난이도

  • solved 기준 1번은 다이아3
  • solved 기준 3번은 루비5

관련 문제 링크

@cloneot cloneot added the 주제 제안 블로그 포스팅 주제 제안 label Feb 20, 2020
@cloneot cloneot changed the title [주제 제안]Longest Common Sequence [주제 제안] Longest Common Sequence Feb 20, 2020
@cloneot cloneot changed the title [주제 제안] Longest Common Sequence [주제 제안] Longest Common Subsequence Feb 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
주제 제안 블로그 포스팅 주제 제안
Projects
None yet
Development

No branches or pull requests

1 participant