QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#308611#8136. Rebellious Edgeucup-team2112#WA 50ms3580kbC++201.9kb2024-01-20 11:03:282024-01-20 11:03:29

Judging History

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

  • [2024-01-20 11:03:29]
  • 评测
  • 测评结果:WA
  • 用时:50ms
  • 内存:3580kb
  • [2024-01-20 11:03:28]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;

const int inf = 2e9;

void solve(){
    int n, m;
    std::cin >> n >> m;
    std::vector adj(n + 1, std::vector<std::pair<int, int> >());
    auto go = [&]() {
        std::vector<int> vis(n + 1);
        std::vector<int> dis(n + 1, inf);
        dis[1] = 0;
        std::priority_queue<std::pair<int, int> > pq;
        pq.push({0, 1});
        i64 res = 0;
        while (not pq.empty()) {
            auto [d, u] = pq.top();
            pq.pop();
            if (vis[u])
                continue;
            vis[u] = 1;
            res -= d;
            for (auto [v, w] : adj[u]) {
                if (not vis[v] and dis[v] > w) {
                    dis[v] = w;
                    pq.push({-w, v});
                }
            }
        }
        if (std::count(vis.begin() + 1, vis.end(), 0) > 0)
            return i64(1e18);
        return res;
    };

    int x, y, z;
    std::vector<std::tuple<int, int, int> > edges;
    for (int i = 0; i < m; i++) {
        int u, v, w;
        std::cin >> u >> v >> w;
        if (u > v) {
            std::tie(x, y, z) = std::make_tuple(u, v, w);
            continue;
        }
        edges.push_back({u, v, w});
        adj[u].push_back({v, w});
    }
    i64 ans = go();
    for (int i = 1; i <= n; i += 1) {
        adj[i].clear();
    }
    for (auto [u, v, w] : edges) {
        if (v == y) continue;
        // std::cerr << u << " " << v << " " << w << "\n";
        adj[u].push_back({v, w});
    }
    // std::cerr << x << " " << y << " " << z << "\n";
    adj[x].push_back({y, z});
    ans = std::min(ans, go());
    std::cout << ans << '\n';
}

int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    int T;
    std::cin >> T;
    while(T--) {
        solve();
    }
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3520kb

input:

3
5 6
1 2 4
1 3 2
2 3 0
3 4 1
4 5 1
5 2 1
4 4
1 2 4
1 3 6
1 4 8
4 2 1000000
3 3
1 2 100
2 1 10
2 3 1000

output:

5
18
1100

result:

ok 3 number(s): "5 18 1100"

Test #2:

score: -100
Wrong Answer
time: 50ms
memory: 3580kb

input:

50000
4 5
2 4 998973548
2 3 501271695
4 1 778395982
1 4 32454891
1 2 757288934
4 5
1 4 720856669
2 3 665098951
3 4 407461517
2 1 866914401
1 2 457859826
4 5
1 2 75288664
1 4 624893594
3 2 458973866
2 4 769074655
2 3 834773751
4 5
2 3 237060634
2 4 297307882
3 4 200383586
1 2 42856502
3 1 16574713
4 ...

output:

1291015520
1530420294
1534956009
480300722
1366795927
1541095843
2567005573
858095911
1034153425
793861088
605832428
1051598350
612891589
1265994009
517769091
1899616226
1556463491
93634961
960978736
984886788
1696503797
1002892611
1969660290
1431417780
1515267731
977157479
1937478556
654475526
1401...

result:

wrong answer 7th numbers differ - expected: '2493849488', found: '2567005573'