Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 의미와 무의미의 경계에서
- objtofbx
- Unreal
- 셰그먼트트리
- UActor
- C++
- SQL
- Linux
- 데이터베이스 배움터
- Security
- 민겸수
- 백준 1253번
- command not found
- FBX
- OS
- 백준
- 오손데이터읽기
- hackerank
- 2단계로킹
- 1253번
- UnrealMP
- 1759번
- 언리얼 커스텀 플러그인
- 트랜잭션 관리
- 실습
- 언리얼 플러그인
- oracle
- 1967번
- 5639
- 비재귀셰그먼트
Archives
- Today
- Total
목록다익스트라 (1)
fatalite
녹색 옷 입은 애가 젤다지? - 4485번 백준
문제 문제 난이도 : 골드 4 문제 분류 : 다익스트라 문제 리뷰 딱히.. 없지만.. memset 이거 왜 작동 잘 안하는지 모르겠다. 제대로 다시 알아보자,, 문제 소스 코드 #include #include #include #include #include #include #include #include using namespace std; vector Edges[16000]; int Distance[16000]; void Init() { ios_base::sync_with_stdio(false); cin.tie(NULL); std::cout.tie(NULL); } void Dijkstra(int start) { for (int i = 0; i < 16000; i++) { Distance[i] = 210..
코딩 인터뷰/Graph Basic
2023. 9. 25. 21:58