일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 배경 그림
- 게임 개발
- 운영체제
- MAC
- Double free
- pdlc
- sampling theory
- 유스케이스
- 언리얼엔진
- 게임개발
- dirty cow
- Rr
- frequency-domain spectrum analysis
- DP
- MLFQ
- stride
- dtft
- Race condition
- Unity #Indie Game
- ret2libc
- DSP
- TSet
- RBAC
- 메카님
- AINCAA
- 유니티
- CTF
- STCF
- Security
- linear difference equation
Archives
- Today
- Total
목록다익스트라 (1)
다양한 기록
[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