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 |
Tags
- directx
- DirectX11
- winapi
- UE5
- Unreal Engine5
- GeeksForGeeks
- UnrealEngine5
- algorithm
- UnrealEngine4
- Programmers
- C
- 티스토리챌린지
- RootMotion
- 줄 세우기
- RVO
- Frustum
- NRVO
- 2294
- 프로그래머스
- TObjectPtr
- 팰린드롬 만들기
- 백준
- C++
- const
- softeer
- baekjoon
- 1563
- 오블완
- IFileDialog
- 언리얼엔진5
Archives
- Today
- Total
목록9251 (1)
Game Develop
[Algorithm]Baekjoon 9251번 :: LCS
https://www.acmicpc.net/problem/9251 9251번: LCS LCS(Longest Common Subsequence, 최장 공통 부분 수열)문제는 두 수열이 주어졌을 때, 모두의 부분 수열이 되는 수열 중 가장 긴 것을 찾는 문제이다. 예를 들어, ACAYKP와 CAPCAK의 LCS는 ACAK가 된다. www.acmicpc.net 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 int dp[1001][1001] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); string a, b; cin >> a ..
Algorithm/Baekjoon
2022. 12. 7. 06:06