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
- 백준
- 정렬
- 동적계획법
- substr
- C++
- 다익스트라
- 리시프
- 문자열
- Dijkstra
- 참고 문헌 : MACHINE LEARNING 기계학습 _ 오일석
- 다이나믹프로그래밍
- sql고득점kit
- String
- set
- dfs
- MySQL
- 코테
- DP
- 코딩테스트연습
- vector
- MAP
- 코테준비
- unordered_map
- 플로이드와샬
- 프로그래머스
- 알고리즘
- 시스템콜
- 우선순위큐
- 스택
- 최대공약수
Archives
- Today
- Total
목록미확인 도착지 (1)
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..
Computer Science & Engineering/알고리즘
2021. 7. 21. 19:13