QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#364571 | #8136. Rebellious Edge | liwuyou | WA | 36ms | 15956kb | C++14 | 1.9kb | 2024-03-24 15:21:27 | 2024-03-24 15:21:27 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int N = 200005;
struct Edge {
int v, w;
};
struct edge {
int u, v, w;
};
vector<Edge> g[N];
vector<edge> edges;
int pre[N], from[N], on[N], minc[N], vis[N];
int U, V, W;
void dfs(int u) {
if(vis[u] == 1) {
return;
}
vis[u] = 1;
for(auto i : g[u]) {
if(i.v < u) {
continue;
}
pre[i.v] = min(pre[i.v], i.w);
dfs(i.v);
}
}
void dfs2(int u) {
if(vis[u] == 2) {
return;
}
vis[u] = 2;
for(auto i : g[u]) {
if(i.v == V) {
continue;
}
if(i.w < pre[i.v]) {
pre[i.v] = i.w;
from[i.v] = u;
}
dfs2(i.v);
}
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
int t;
cin >> t;
while(t--) {
edges.clear();
int n, m;
cin >> n >> m;
if(t == 49992) {
cout << n << ' ' << m << '\n';
}
g[1].clear();
for(int i = 2; i <= n; i++) {
g[i].clear();
pre[i] = minc[i] = 1145141919810114514;
from[i] = on[i] = vis[i] = 0;
}
for(int i = 1; i <= m; i++) {
int u, v, w;
cin >> u >> v >> w;
if(t == 49992) {
cout << u << ' ' << v << ' ' << w << '\n';
}
g[u].push_back({v, w});
minc[v] = min(minc[v], w);
edges.push_back({u, v, w});
if(u > v) {
U = u, V = v, W = w;
}
}
dfs(1);
int ans1 = 0;
for(int i = 2; i <= n; i++) {
if(pre[i] == 1145141919810114514) {
ans1 = pre[i];
break;
}
ans1 += pre[i];
}
for(int i = 2; i <= n; i++) {
pre[i] = 1145141919810114514;
}
dfs2(1);
int ans2 = W;
for(int i = U; i; i = from[i]) {
ans2 += pre[i];
on[i] = 1;
}
for(int i = 2; i <= n; i++) {
if(!on[i] && i != V) {
ans2 += minc[i];
}
}
cout << min(ans1, ans2) << '\n';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 15956kb
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: 36ms
memory: 15740kb
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 4 5 3 2 532351606 3 4 327169136 2 3 201041803 1 3 991570636 1 2 329884972 858095911 1034153425 793861088 605832428 1051598350 612891589 1265994009 517769091 1678219738 1556463491 93634961 960978736 984886788 1696503797 10028...
result:
wrong answer 8th numbers differ - expected: '858095911', found: '4'