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