Submission #757653

# Submission time Handle Problem Language Result Execution time Memory
757653 2023-06-13T14:07:20 Z sysia Olympic Bus (JOI20_ho_t4) C++17
0 / 100
1000 ms 3352 KB
//Sylwia Sapkowska
#include <bits/stdc++.h>
#pragma GCC optimize("O3", "unroll-loops")
using namespace std;
 
void __print(int x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << "'" << x << "'";}
void __print(const char *x) {cerr << '"' << x << '"';}
void __print(const string &x) {cerr << '"' << x << '"';}
void __print(bool x) {cerr << (x ? "true" : "false");}
 
template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ", "; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? ", " : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#ifdef LOCAL
#define debug(x...) cerr << "[" << #x << "] = ["; _print(x)
#else
#define debug(x...)
#endif
 
typedef pair<int, int> T;
set<T>cycle;
const int oo2 = 2e9+7;
const int mx = 202;
int n;
int pre[mx];
priority_queue<T>pq;
 
vector<int> dijkstra(vector<int>&dist, vector<vector<T>>&g, int from, int to = -1){
    dist[from] = 0;
    
    if (to != -1) {
        for (int i = 1; i<=n; i++) pre[i] = 0;
    }
    pq.push({0, from});
    while ((int)pq.size()){
        auto [d, v] = pq.top();
        pq.pop();
        if (dist[v] < d) continue;
        for (auto [x, c]: g[v]){
            if (dist[x] > dist[v] + c){
                pre[x] = v;
                dist[x] = dist[v] + c;
                pq.push({dist[x], x});
            }
        }
    }
    if (to != -1){
        int now = to;
        int prev = -1;
        while (now){
            if (prev != -1) cycle.insert({now, prev});
            prev = now;
            now = pre[now];
        }
    }
    return dist;
}
 
int dist[mx];
int dijkstra2(vector<set<T>>&g, int from, int to = -1){
    for (int i = 1; i<=n; i++) dist[i] = oo2;
    dist[from] = 0;
    pq.push({0, from});
    while ((int)pq.size()){
        auto [d, v] = pq.top(); pq.pop();
        if (dist[v] < d) continue;
        for (auto [x, c]: g[v]){
            if (dist[x] > dist[v] + c){
                dist[x] = dist[v] + c;
                pq.push({dist[x], x});
            }
        }
    }
    return dist[to];
}
 
 
void solve(){
    int m; cin >> n >> m;
    vector<vector<T>>g(n+1), gt(n+1);
    vector<tuple<int, int, int, int>>edges;
    for (int i = 0; i<m; i++){
        int a, b, c, d; cin >> a >> b >> c >> d;
        g[a].emplace_back(b, c);
        gt[b].emplace_back(a, c);
        edges.emplace_back(a, b, c, d);
    }
    vector<int>d1(n+1, oo2), dn(n+1, oo2), d1rev(n+1, oo2), dnrev(n+1, oo2);
    dijkstra(d1, g, 1, n); //1 do x
    dijkstra(dn, g, n, 1); //n do x
    dijkstra(d1rev, gt, 1); //x do 1
    dijkstra(dnrev, gt, n); //x do n
    long long ans = (long long)d1[n] + dn[1];
    int k = 0;
    debug(cycle);
    vector<set<T>>G(n+1);
    for (auto [a, b, c, d]: edges){
        G[a].insert({b, c});
    }
    for (auto &[a, b, c, d]: edges){
        if (cycle.find({a, b}) != cycle.end()){
            debug(a, b);
            auto [A, B, C, D] = edges[k];
            G[A].erase({B, C});
            G[B].insert({A, C});
            long long tmp = d + (long long)dijkstra2(G, 1, n) + (long long)dijkstra2(G, n, 1);
            ans = min(ans, tmp);
        } else {
            ans = min(ans, (long long)d + (long long)min(d1[n], d1[b]+c+dnrev[a]) + (long long)min(dn[1], dn[b] + c + d1rev[a]));
        }
        k++;
    }
    if (ans >= oo2) cout << "-1\n";
    else cout << ans << "\n";
}
 
int32_t main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    solve();
 
    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 340 KB Output is correct
2 Incorrect 1 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1073 ms 3352 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 340 KB Output is correct
2 Incorrect 1 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 340 KB Output is correct
2 Incorrect 1 ms 340 KB Output isn't correct
3 Halted 0 ms 0 KB -