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