Submission #963089

# Submission time Handle Problem Language Result Execution time Memory
963089 2024-04-14T13:41:16 Z toast12 Commuter Pass (JOI18_commuter_pass) C++14
0 / 100
369 ms 25640 KB
#include <bits/stdc++.h>
using namespace std;

const long long INF = 1e18;

int n, m;
int s, t, u, v;
vector<vector<pair<int, long long>>> adj;
vector<vector<int>> p;
vector<bool> on_path;
vector<bool> processed;

void dfs(int cur) {
    if (processed[cur])
        return;
    on_path[cur] = true;
    processed[cur] = true;
    for (auto x : p[cur]) {
        dfs(x);
    }
}

void dijkstras(vector<vector<int>> &parent, vector<long long> &dist, int start) {
    priority_queue<pair<int, int>> pq;
    pq.push({0, start});
    while (!pq.empty()) {
        int x = pq.top().second;
        pq.pop();
        for (auto e : adj[x]) {
            long long w = e.second;
            if (w + dist[x] < dist[e.first]) {
                parent[e.first].push_back(x);
                dist[e.first] = dist[x]+w;
                pq.push({-dist[e.first], e.first});
            }
        }
    }
}

int main() {
    cin >> n >> m;
    adj.resize(n+1);
    p.resize(n+1);
    processed.resize(n+1);
    on_path.resize(n+1);
    cin >> s >> t >> u >> v;
    for (int i = 0; i < m; i++) {
        int x, y;
        long long w;
        cin >> x >> y >> w;
        adj[x].push_back({y, w});
        adj[y].push_back({x, w});
    }
    p[s].push_back(s);
    vector<long long> d(n+1, INF);
    d[s] = 0;
    dijkstras(p, d, s);
    for (auto x : p[t]) {
        dfs(x);
    }
    vector<vector<int>> temp(n+1);
    vector<long long> dv(n+1, INF);
    dv[v] = 0;
    dijkstras(temp, dv, v);
    long long ans = INF;
    long long mnv = INF;
    for (int i = 1; i <= n; i++) {
        if (!on_path[i])
            continue;
        mnv = min(mnv, dv[i]);
        ans = min(ans, mnv);
    }
    cout << ans << '\n';
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 309 ms 25640 KB Output is correct
2 Correct 315 ms 25288 KB Output is correct
3 Incorrect 336 ms 25200 KB Output isn't correct
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 297 ms 25300 KB Output is correct
2 Incorrect 369 ms 25240 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 1628 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 309 ms 25640 KB Output is correct
2 Correct 315 ms 25288 KB Output is correct
3 Incorrect 336 ms 25200 KB Output isn't correct
4 Halted 0 ms 0 KB -