| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Unreal Engine
- listen server
- Aegis
- rpc
- 게임 개발
- animation
- ability task
- C++
- UI
- linear regression
- os
- gameplay tag
- gameplay effect
- photon fusion2
- 유니티
- Replication
- attribute
- gas
- stride
- unity
- Multiplay
- 게임개발
- 언리얼 엔진
- 언리얼엔진
- widget
- 보안
- local prediction
- CTF
- MAC
- gameplay ability system
Archives
- Today
- Total
목록algorithm (1)
Replicated
[DP] LCS
#include #include #include #include using namespace std;void Lcs(const string& X, const string& Y){ int N = X.size(); int M = Y.size(); vector > DP(N + 1, vector(M + 1, 0)); for (int i = 1; i 0 && j > 0) { if ( X[i - 1] == Y[j - 1] ) { lcs += X[i - 1]; --i; --j; } else if( DP[i - 1][j] > DP[i][j - 1] ) { ..
학부/알고리즘
2025. 3. 25. 11:03