티스토리 뷰
백준 소스코드 [C++] 11952 좀비
#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;
int V,E,K,u,v,range;
ll w,price[2];
vector<int> arr[100001];
queue<pii> infest;
int chk[100001];
priority_queue<pli,vector<pli>,greater<pli>> pq;
vector<ll> dist(100001,LONG_LONG_MAX);
void bfs(){
while(!infest.empty()){
int here = infest.front().first;
int cnt = infest.front().second;
infest.pop();
if(cnt==range)continue;
for(auto there : arr[here]){
if(!chk[there]){
chk[there]=1;
infest.push({there,cnt+1});
}
}
}
}
void dijkstra(){
pq.push({0LL,1});
dist[1]=0LL;
while(!pq.empty()){
ll cost = pq.top().first;
int here = pq.top().second;
pq.pop();
if(dist[here]<cost) continue;
for(auto there : arr[here]){
int nextnode = there;
ll nextcost = price[chk[there]] + cost;
if(chk[nextnode]==2)continue;
if(dist[nextnode]>nextcost){
dist[nextnode]=nextcost;
pq.push({nextcost,nextnode});
}
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>V>>E>>K>>range;
cin>>price[0]>>price[1];
for(int i=0;i<K;i++){
cin>>u;
infest.push({u,0});
chk[u]=2;
}
for(int i=0;i<E;i++){
cin>>u>>v;
arr[v].push_back(u);
arr[u].push_back(v);
}
bfs();
dijkstra();
cout<<dist[V]-price[chk[V]];
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 17435 합성함수와 쿼리 (0) | 2021.04.01 |
---|---|
백준 소스코드 [C++] 1162 도로포장 (0) | 2021.03.30 |
백준 소스코드 [C++] 17835 면접보는 승범이네 (0) | 2021.03.30 |
백준 소스코드 [C++] 10021 Watering the Fields (0) | 2021.03.29 |
백준 소스코드 [C++] 16398 행성 연결 (0) | 2021.03.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Testable
- WWDC21
- HIG
- 최단경로문제
- 네트워크 유량
- 최단경로 문제
- 포드 풀커슨 알고리즘
- 벨만포드 알고리즘
- CompositionalLayout
- 다익스트라 시간복잡도
- rxswift
- WWDC16
- IOS
- WWDC17
- test coverage
- 벨만포드 시간복잡도
- State Restoration
- 최단경로 알고리즘
- 강한 순환 참조
- 코딩대회
- mach-o
- CPU와 Memory
- observeOn
- WWDC19
- MeTal
- 에드몬드 카프 알고리즘
- 최대 매칭
- 부스트캠프 6기
- 컴퓨터 추상화
- 네트워크 플로우
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함