QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#631985#5579. Bog of Eternal Stenchenze114514TL 0ms0kbC++201.2kb2024-10-12 11:18:452024-10-12 11:18:45

Judging History

你现在查看的是最新测评结果

  • [2024-10-12 11:18:45]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:0kb
  • [2024-10-12 11:18:45]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

void solve() {
    int n, m;
    cin >> n >> m;
    const ll INF = 1e18;
    vector<vector<pair<int, ll>>> adj(n + 1); // Adjacency list: (neighbor, stench change)
    
    for (int i = 0; i < m; ++i) {
        int u, v;
        ll s;
        cin >> u >> v >> s;
        adj[u].emplace_back(v, s);
    }
    
    vector<ll> stench(n + 1, INF);
    stench[1] = 0;
    // Priority queue: (stench level, node)
    priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<>> pq;
    pq.emplace(0, 1);
    
    while (!pq.empty()) {
        auto [s_u, u] = pq.top();
        pq.pop();
        
        // If we have already found a better stench level, skip
        if (s_u > stench[u]) continue;
        
        for (auto &[v, s_uv] : adj[u]) {
            ll s_v_candidate = max(0LL, s_u + s_uv);
            if (s_v_candidate < stench[v]) {
                stench[v] = s_v_candidate;
                pq.emplace(stench[v], v);
            }
        }
    }
    
    cout << stench[n] << '\n';
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    solve();

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Time Limit Exceeded

input:

1999 1999
1 2 1000000000
2 3 1000000000
3 4 1000000000
4 5 1000000000
5 6 1000000000
6 7 1000000000
7 8 1000000000
8 9 1000000000
9 10 1000000000
10 11 1000000000
11 12 1000000000
12 13 1000000000
13 14 1000000000
14 15 1000000000
15 16 1000000000
16 17 1000000000
17 18 1000000000
18 19 1000000000
1...

output:


result: