이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int int64_t
#define pii pair<int, int>
signed main() {
freopen("in.txt", "r", stdin);
int n, m;cin>>n>>m;
int s, t;cin>>s>>t;
int u, v;cin>>u>>v;
vector<set<pii>> g(n);
for (int i=0;i<m;i++) {
int a, b, c;cin>>a>>b>>c;
a--;b--;
g[a].insert({b, c});
g[b].insert({a, c});
}
s--;t--;u--;v--;
// dijsktra
vector<int> d(n, 1e16);
d[s] = 0;
priority_queue<pii> pq;
for (int i=0;i<n;i++) {
pq.push({-d[i], i});
}
vector<bool> proc(n, false);
while (!pq.empty()) {
pii p=pq.top();pq.pop();
if (proc[p.second]) continue;
proc[p.second] = true;
for (pii x : g[p.second]) {
if (d[p.second] + x.second < d[x.first]) {
d[x.first] = d[p.second] + x.second;
pq.push({-d[x.first], x.first});
}
}
}
proc = vector<bool>(n, false);
queue<int> q;
q.push(t);
vector<set<pii>> cp = g;
// all edges going towards the sink
while (!q.empty()) {
int p=q.front();q.pop();
if (proc[p]) continue;
proc[p] = true;
set<pii> temp = g[p];
for (auto x : g[p]) {
if (d[p] == d[x.first] + x.second) {
// set edge weight to zero of node t
temp.erase(temp.find({x.first, x.second}));
temp.insert({x.first, 0});
q.push(x.first);
}
}
g[p] = temp;
}
d = vector<int>(n, 1e16);
d[u] = 0;
for (int i=0;i<n;i++) {
pq.push({-d[i], i});
}
proc = vector<bool>(n, false);
while (!pq.empty()) {
pii p=pq.top();pq.pop();
if (proc[p.second]) continue;
proc[p.second] = true;
for (pii x : g[p.second]) {
if (d[p.second] + x.second < d[x.first]) {
d[x.first] = d[p.second] + x.second;
pq.push({-d[x.first], x.first});
}
}
}
int val = d[v];
g = cp;
proc = vector<bool>(n, false);
while (!q.empty()) {
int p=q.front();q.pop();
if (proc[p]) continue;
proc[p] = true;
for (auto x : g[p]) {
if (d[p] == d[x.first] + x.second) {
g[x.first].erase(g[x.first].find({p, x.second}));
g[x.first].insert({p, 0});
q.push(x.first);
}
}
}
d = vector<int>(n, 1e16);
d[u] = 0;
for (int i=0;i<n;i++) {
pq.push({-d[i], i});
}
proc = vector<bool>(n, false);
while (!pq.empty()) {
pii p=pq.top();pq.pop();
if (proc[p.second]) continue;
proc[p.second] = true;
for (pii x : g[p.second]) {
if (d[p.second] + x.second < d[x.first]) {
d[x.first] = d[p.second] + x.second;
pq.push({-d[x.first], x.first});
}
}
}
cout << min(d[v], val) << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
commuter_pass.cpp: In function 'int main()':
commuter_pass.cpp:8:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
8 | freopen("in.txt", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |