일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리시프
- 프로그래머스
- 다이나믹프로그래밍
- DP
- 문자열
- 스택
- substr
- 코테
- sql고득점kit
- Dijkstra
- 코테준비
- 우선순위큐
- 정렬
- set
- 백준
- 알고리즘
- 코딩테스트연습
- MAP
- 최대공약수
- String
- 플로이드와샬
- vector
- 시스템콜
- 다익스트라
- 참고 문헌 : MACHINE LEARNING 기계학습 _ 오일석
- C++
- 동적계획법
- dfs
- unordered_map
- MySQL
- Today
- Total
목록Dijkstra (2)
YeJin's Footsteps

문제 링크 https://www.acmicpc.net/problem/9370 9370번: 미확인 도착지 (취익)B100 요원, 요란한 옷차림을 한 서커스 예술가 한 쌍이 한 도시의 거리들을 이동하고 있다. 너의 임무는 그들이 어디로 가고 있는지 알아내는 것이다. 우리가 알아낸 것은 그들이 s지점에서 www.acmicpc.net 문제 풀이 코드 #include #include #include #include #include using namespace std; using P = pair; const int INF=987654321; const int MN=2001; vector graph[MN]; vector Dijkstra(int N, int S){ vector Dijk(N+1,INF); priority..

문제 링크 https://www.acmicpc.net/problem/1238 1238번: 파티 첫째 줄에 N(1 ≤ N ≤ 1,000), M(1 ≤ M ≤ 10,000), X가 공백으로 구분되어 입력된다. 두 번째 줄부터 M+1번째 줄까지 i번째 도로의 시작점, 끝점, 그리고 이 도로를 지나는데 필요한 소요시간 Ti가 들어 www.acmicpc.net 문제 풀이 코드 #include #include #include #include using namespace std; using P = pair; const int MN=1010; const int INF=1e9; vector graph [MN]; int Dist[MN]; int Answer[MN]; void Dijkstra(int S){ priority_..