QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#326057 | #8136. Rebellious Edge | pikachu_coder | WA | 50ms | 3600kb | C++14 | 2.0kb | 2024-02-12 09:22:30 | 2024-02-12 09:22:31 |
Judging History
answer
/*
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
*/
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define vi vector<int>
#define vl vector<ll>
#define vii vector<vector<int>>
#define vll vector<vector<ll>>
#define pii pair<int, int>
#define pil pair<int, ll>
const int maxn = 200003;
const ll mx = 1000000000000000000LL;
int n; int m;
//one rebellious edge, other edges all face in one direction
//if you don't use the edge, take the smallest connection of each node
//if you use the edge, skip the node that it goes back to when taking the smallest
//connection of each node and then visit that node last
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int t; cin >> t;
while(t--){
cin >> n >> m;
vector<vector<pil>> edg(n, vector<pil>());
int rebelin = -1; int rebelout = -1; ll rebelv = 0LL; //skip rebelin
vll dp(n, vl(2, mx));
for(int a = 0; a < m; a++){
int f; int s; ll v;
cin >> f >> s >> v; f--; s--;
if(f > s){
rebelin = f; rebelout = s; rebelv = v;
}
else{
edg[s].push_back({f, v});
}
}
vl s(2, 0);
for(int a = 0; a < 2; a++){
for(int b = 1; b < n; b++){
if(a == 1 && b == rebelout) continue;
for(pil e : edg[b]){
if(e.first == rebelout){
if(a == 0){
dp[b][a] = min(dp[b][a], e.second);
}
}
else{
dp[b][a] = min(dp[b][a], e.second);
}
}
//cout << " at node " << b << " skip " << a << " " << dp[b][a] << endl;
s[a] += dp[b][a];
}
}
cout << min(s[0], s[1] + rebelv) << "\n";
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3600kb
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: 3540kb
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 33rd numbers differ - expected: '1114618401', found: '1819690965'