일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- gas
- photon fusion2
- map design
- animation
- Aegis
- Replication
- 게임 개발
- MAC
- ability task
- 언리얼 엔진
- gameplay effect
- 유스케이스
- Unreal Engine
- Race condition
- gravity direction
- ret2libc
- 게임개발
- stride
- MLFQ
- Delegate
- 메카님
- CTF
- dirty cow
- unity
- Multiplay
- 언리얼엔진
- gameplay ability system
- 유니티
- DSP
- Security
Archives
- Today
- Total
목록다익스트라 (1)
Replicated
[Greedy] 다익스트라 최단 경로
#include #include using namespace std;int INF = 200000000;class Node {public: int idx; int weight;};struct cmp { bool operator() (Node x, Node y) { return x.weight > y.weight; }};priority_queue, cmp> heap;int nextV(bool *visited, int now) { int idx = -1; while (heap.size() > 0) { Node next = heap.top(); heap.pop(); if( visited[next.idx] ) continu..
알고리즘
2024. 11. 3. 21:58