일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 언리얼엔진
- listen server
- CTF
- Unreal Engine
- 게임개발
- UI
- 게임 개발
- Replication
- rpc
- animation
- stride
- gravity direction
- gameplay effect
- ability task
- nanite
- map design
- Aegis
- gameplay tag
- attribute
- gas
- 언리얼 엔진
- photon fusion2
- MAC
- local prediction
- unity
- gameplay ability system
- network object pooling
- Multiplay
- 유니티
- os
Archives
- Today
- Total
목록다익스트라 (1)
Replicated
[Greedy] 다익스트라 최단 경로
// 5972#include #include #include using namespace std;const int INF = 2000000000;int N, M;struct Node{ int Idx; int Weight;};vector > Graph;struct cmp{ bool operator() (Node x, Node y) { return x.Weight > y.Weight; }};vector Dijkstra(int Start){ vector Distance(N + 1, INF); priority_queue, cmp> Heap; Distance[Start] = 0; Heap.push( {Start, 0} ); while ( !Heap..
알고리즘
2024. 11. 3. 21:58