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
- BFS
- 백준
- 알고리즘
- dfs
- 다이나믹 프로그래밍
- dynamic programming
- 동적 계획법
- 삼성 SDS 대학생 알고리즘 특강
- 해커랭크
- 구현
- C++
- 그리디
- 시뮬레이션
- 소수
- hackerrank
- BOJ
- SWEA
- sw expert academy
- 에라토스테네스의 체
- 백트래킹
- koitp
- PS
- 잠실
- 맛집
- 스택
- 완전탐색
- Algorithm
- 삼성 기출
- DP
- 브루트포스
Archives
- Today
- Total
펭로그
1753 본문
// BOJ 1753 최단경로
#include <iostream>
#include <vector>
#include <queue>
#include <functional>
using namespace std;
struct edge {
vector<int> to;
vector<int> len;
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
freopen("input.txt", "r", stdin);
vector<edge> edg(20001);
priority_queue<int, pair<int, int>, greater<int> > qq;
int D[20001] = { -1, };
int num, e, start;
cin >> num >> e >> start;
D[start] = 0;
qq.push(pair<int, int>(0, start));
int u, v, w;
for (int i = 0; i < e; i++) {
cin >> u >> v >> w;
edg[u].to.push_back(v);
edg[u].len.push_back(w);
}
pair<int, int> tmp;
while (!qq.empty()) {
tmp = qq.top();
qq.pop();
int cost = tmp.first;
int node = tmp.second;
}
return 0;
}
다익스트라
'Study > PS(Algorithm)' 카테고리의 다른 글
[C++] 백준 BOJ 10026 적록색약 (0) | 2018.08.03 |
---|---|
[C++] 백준 BOJ 11653 소인수분해 (0) | 2018.08.02 |
[C++] 백준 BOJ 1260 DFS와 BFS (0) | 2018.07.31 |
[C++] 백준 BOJ 2960 에라토스테네스의 체 (0) | 2018.07.31 |
[C++] 백준 BOJ 2252 줄 세우기 (0) | 2018.07.31 |
Comments