티스토리 뷰
백준 소스코드 [C++] 2325 개코전쟁
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#include <cstdlib>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define pli pair<ll, int>
#define make_unique(v) sort(all(v)), v.erase(unique(all(v), v.end())
typedef long long ll;
using namespace std;
#define MAX 987654321
int V, E, v, e, weight;
vector <pii>adj[1001];
int result[1001], parent[1001];
void dijkstra(){
for(int i=1;i<=1000;i++){
result[i]=MAX;
parent[i]=-1;
}
priority_queue<pii,vector<pii>, greater<pii>> pq;
pq.push({0,1});
result[1]=0;
while(!pq.empty()){
int here = pq.top().second;
int cost = pq.top().first;
pq.pop();
if (result[here]<cost) continue;
for(auto ith: adj[here]){
int nextcost = cost + ith.second;
int there = ith.first;
if(result[there]>nextcost){
result[there]=nextcost;
parent[there]=here;
pq.push({nextcost,there});
}
}
}
}
int newDijkstra(int par, int child){
for(int i=1;i<=1000;i++)result[i]=MAX;
priority_queue<pii,vector<pii>, greater<pii>> pq;
pq.push({0,1});
result[1]=0;
while(!pq.empty()){
int here = pq.top().second;
int cost = pq.top().first;
pq.pop();
if (result[here]<cost) continue;
for(auto ith: adj[here]){
int nextcost = cost + ith.second;
int there = ith.first;
if((there == par && here == child) || (here == par && there == child)) continue;
if(result[there]>nextcost){
result[there]=nextcost;
pq.push({nextcost,there});
}
}
}
return result[V];
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> V >> E;
for (int i = 0;i < E;i++) {
cin >> v >> e >> weight;
adj[v].push_back({ e,weight });
adj[e].push_back({ v,weight });
}
dijkstra();
int Mvalue = INT_MIN,here=V;
while(parent[here]!=-1){
Mvalue = max(Mvalue, newDijkstra(parent[here],here));
here = parent[here];
}
cout<<Mvalue<<'\n';
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 2150 Strongly Connected Component (0) | 2021.04.15 |
---|---|
백준 소스코드 [C++] 17071 숨바꼭질 5 (0) | 2021.04.12 |
백준 소스코드 [C++] 13907 세금 (0) | 2021.04.05 |
백준 소스코드 [C++] 1738 골목길 (0) | 2021.04.04 |
백준 소스코드 [C++] 1208 부분수열의 합 2 (0) | 2021.04.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- observeOn
- CompositionalLayout
- 최단경로문제
- rxswift
- 다익스트라 시간복잡도
- 에드몬드 카프 알고리즘
- 네트워크 유량
- 벨만포드 시간복잡도
- HIG
- mach-o
- WWDC21
- 최대 매칭
- State Restoration
- WWDC17
- 최단경로 알고리즘
- 강한 순환 참조
- 네트워크 플로우
- 부스트캠프 6기
- MeTal
- 코딩대회
- 최단경로 문제
- test coverage
- IOS
- 컴퓨터 추상화
- WWDC16
- 벨만포드 알고리즘
- WWDC19
- Testable
- CPU와 Memory
- 포드 풀커슨 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함