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 | 31 |
Tags
- Programmers
- RootMotion
- directx
- IFileDialog
- DeferredRendering
- RVO
- 오블완
- C++
- 팰린드롬 만들기
- C
- UnrealEngine5
- 티스토리챌린지
- UnrealEngine4
- Unreal Engine5
- 1563
- NRVO
- Frustum
- baekjoon
- DirectX11
- 2294
- 언리얼엔진5
- 프로그래머스
- const
- algorithm
- UE5
- 백준
- softeer
- 줄 세우기
- GeeksForGeeks
- winapi
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