QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#348362#8136. Rebellious Edgeucup-team228#WA 44ms3624kbC++171.7kb2024-03-09 18:02:462024-03-09 18:02:48

Judging History

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

  • [2024-03-09 18:02:48]
  • 评测
  • 测评结果:WA
  • 用时:44ms
  • 内存:3624kb
  • [2024-03-09 18:02:46]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

typedef pair<int, int> pii;
typedef long long ll;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int t;
    cin >> t;
    while (t--) {
        int n, m;
        cin >> n >> m;
        vector<vector<pii>> g(n);
        int x, y, wxy;
        while (m--) {
            int u, v, w;
            cin >> u >> v >> w;
            --u; --v;
            if (u > v) {
                x = v, y = u, wxy = w;
            } else {
                g[v].push_back({u, w});
            }
        }
        ll ans = 0;
        vector<int> parent(n, -1), weight(n);
        for (int v = 1; v < n; ++v) {
            int mn = 2e9 + 9;
            int best = -1;
            for (auto& [u, w] : g[v]) {
                if (w < mn) {
                    mn = w;
                    best = u;
                }
            }
            parent[v] = best;
            weight[v] = mn;
            ans += mn;
        }
        ll ans2 = ans + wxy - weight[x];
        vector<int> path;
        bool ok = false;
        for (int v = y; v != x; v = parent[v]) {
            if (v == -1) {
                ok = true;
                break;
            }
            path.push_back(v);
        }
        if (!ok) {
            ll ans3 = 1e18;
            for (int v : path) {
                int mn2 = 2e9 + 9;
                for (auto [u, w] : g[v]) {
                    if (u == parent[v]) continue;
                    mn2 = min(mn2, w);
                }
                ans3 = min(ans3, ans2 + mn2 - weight[v]);
            }
            ans2 = ans3;
        }
        cout << min(ans, ans2) << '\n';
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3588kb

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: 44ms
memory: 3624kb

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
2493849488
858095911
1034153425
793861088
605832428
1051598350
612891589
1265994009
517769091
1678219738
1556463491
93634961
960978736
984886788
1696503797
1002892611
1969660290
1431417780
1515267731
977157479
1937478556
654475526
1401...

result:

wrong answer 54th numbers differ - expected: '1143971131', found: '1090291883'