일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DSP
- Waterfall
- SJF
- FIFO
- 유니티
- MAC
- MLFQ
- stride
- 유스케이스
- Trap
- 컴퓨터 네트워크
- 게임 개발
- 게임개발
- protection
- DP
- AINCAA
- link layer
- unity
- 운영체제
- OWASP
- Security
- SDLC
- STCF
- information hiding
- polymorphism
- OSI 7계층
- 배경 그림
- 메카님
- frequency-domain spectrum analysis
- Unity #Indie Game
Archives
- Today
- Total
목록2024/11/03 (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