Submission #948464

# Submission time Handle Problem Language Result Execution time Memory
948464 2024-03-18T06:34:05 Z seriouslyFlawed Commuter Pass (JOI18_commuter_pass) C++17
0 / 100
2000 ms 262144 KB
//#pragma GCC optimize("03,unroll-loops")

#include <bits/stdc++.h>

using namespace std;

// Shortcuts for common operations
#define pb push_back
#define p push
#define ppb pop_back
#define f first
#define s second
#define all(x) (x).begin(), (x).end()
#define ll long long
//#define int ll
#define endl "\n"
#define sz(x) (int)x.size()

// Type definitions for convenience
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<vll> vvll;
typedef vector<bool> vb;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<vi> vvi;
typedef vector<pii> vii;

// Debugging macros
#define debug(x) cerr << #x << " = " << (x) << '\n'
#define debug_vector(v) _debug_vector(#v, v)
template<typename T>
void _debug_vector(const string& name, const vector<T>& a) {
    cerr << name << " = [ ";
    for(const auto &x : a) cerr << x << ' ';
    cerr << "]\n";
}

// I/O redirection for local testing
#define iofile(io) \
        freopen((io + ".in").c_str(), "r", stdin); \
        freopen((io + ".out").c_str(), "w", stdout);

// delta for floodfill
vi dx = {0, 1, 0, -1};
vi dy = {1, 0, -1, 0};

// extended deltas for floodfill
vi edx = {0, 1, 0, -1, 1, 1, -1, -1};
vi edy = {1, 0, -1, 0, 1, -1, 1, -1};

// Common outputs
void yes() { cout << "YES" << '\n'; }
void no() { cout << "NO" << '\n'; }

const ll INF = 1e15;
int n, m, home, school, bookstore, cafe;

void dij(int src, vector<vii>&adj, vll &dist){
    dist[src] = 0;
    priority_queue<pll>pq;
    pq.p({0, src});

    while(!pq.empty()){
        auto [len, node] = pq.top();
        pq.pop();

        len *= -1;

        if(dist[node] < len) continue;

        for(auto [_neigh, _cost]: adj[node]){
            if(dist[_neigh] > _cost + len){
                dist[_neigh] = _cost + len;
                pq.p({-dist[_neigh], _neigh});
            }
        }
    }
}

pll dfs(int node, ll delta, vll &dist, vll &distB, vll distC, vector<vector<pii>>&adj){
    ll distToB = distB[node];
    ll distToC = distC[node];

    if(node == home) return {distToB, distToC};

    for(auto [_neigh, _cost] : adj[node]){
        if(dist[_neigh] == delta - _cost){
            auto [_distToB, _distToC] = dfs(_neigh, delta - _cost, dist, distB, distC, adj);
            _distToB = min(_distToB, distB[node]);
            _distToC = min(_distToC, distC[node]);

            if(_distToB + _distToC < distToB + distToC) distToB = _distToB, distToC = _distToC;
        }
    }

    return {distToB, distToC};
}

void fx() {
    // Functionality for fx
    cin >> n >> m >> home >> school >> bookstore >> cafe;

    home--;
    school--;
    bookstore--;
    cafe--;

    vector<vii>adj(n);
    while(m--){
        int src, dest, cost;
        cin >> src >> dest >> cost;
        src--;
        dest--;

        adj[src].pb({dest, cost});
        adj[dest].pb({src, cost});
    }

    vll dist(n, INF), distB(n, INF), distC(n, INF);

    dij(home, adj, dist);
    dij(bookstore, adj, distB);
    dij(cafe, adj, distC);

    auto [distToB, distToC] = dfs(school, dist[school], dist, distB, distC, adj);

    cout << min(distToB + distToC, distB[cafe]) << endl;

}

signed main() {

    cin.tie(0)->sync_with_stdio(0);
    // Uncomment the following lines for file I/O
    // iofile(string("hello"));
    
    // Uncomment the following lines for multiple test cases
    // int t; cin >> t; while(t--) fx();
    
    // Single test case
    fx();
    
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 171 ms 23848 KB Output is correct
2 Runtime error 254 ms 262144 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 272 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2071 ms 1600 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 171 ms 23848 KB Output is correct
2 Runtime error 254 ms 262144 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -