| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- widget
- os
- attribute
- local prediction
- 유니티
- CTF
- Aegis
- gameplay tag
- C++
- 보안
- rpc
- 게임개발
- UI
- Multiplay
- MAC
- ability task
- linear regression
- gameplay ability system
- listen server
- Replication
- photon fusion2
- animation
- gas
- gameplay effect
- 게임 개발
- Unreal Engine
- stride
- 언리얼 엔진
- unity
- 언리얼엔진
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