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