이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int mx = 1e5+5;
int n, m; map<int, vector<tuple<int, int>>> adj[mx];
map<int, ll> tot[mx], dst[mx];
priority_queue<tuple<ll, int, int>> pq;
void add(int b, int c, ll val){
if (val < dst[b][c]) dst[b][c] = val, pq.push({-val, b, c});
}
int main(){
cin >> n >> m;
for (int i = 0; i < m; i++){
int a, b, c, w; cin >> a >> b >> c >> w;
adj[a][c].push_back({b, w});
adj[b][c].push_back({a, w});
tot[a][c] += w; tot[b][c] += w;
dst[a][c] = dst[b][c] = 1e18;
}for (int i = 1; i <= n; i++) dst[i][0] = 1e18;
dst[1][0] = 0; pq.push({0, 1, 0});
while (!pq.empty()){
ll cst; int A, C; tie(cst, A, C) = pq.top(); cst *= -1; pq.pop();
if (cst != dst[A][C]) continue;
if (C){
for (auto [b, w] : adj[A][C])
add(b, 0, tot[A][C] - w + cst);
}else{
for (auto c : adj[A]) for (auto [b, w] : c.second){
add(b, 0, tot[A][c.first] - w + cst);
add(b, 0, w + cst);
add(b, c.first, cst);
}
}
}cout<<(dst[n][0] == 1e18 ? -1 : dst[n][0])<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |