QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#308969 | #8136. Rebellious Edge | ucup-team2279# | WA | 21ms | 3760kb | C++20 | 1.2kb | 2024-01-20 14:02:57 | 2024-01-20 14:02:59 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define mk make_pair
#define lowbit(x) (x&(-x))
#define pb emplace_back
#define pr pair<int,int>
#define let const auto
#define all(A) A.begin(),A.end()
const int N=2e5+5;
int read(){
int x=0,f=1; char c=getchar();
while(('0'>c||c>'9')&&c!='-') c=getchar();
if(c=='-') f=0,c=getchar();
while('0'<=c&&c<='9') x=(x<<1)+(x<<3)+(c^48),c=getchar();
return f?x:-x;
}
void solve(){
int n=read(),m=read();
vector <int> Min(n+1,0x3f3f3f3f),fa(n+1);
vector <int> mi(n+1,0x3f3f3f3f);
vector <int> init(n+1);
vector <tuple <int,int,int> > edge;
int su=9,sv=9,val=9;
for(int i=1; i<=m; i++){
int u=read(),v=read(),w=read();
if(u>v) sv=v,su=u,val=w;
else{
edge.pb(u,v,w);
if(w<Min[v]) Min[v]=w,fa[v]=u;
};
}
ll ans=accumulate(Min.begin()+2,Min.end(),0ll);
int res=0x3f3f3f3f;
int p=su;
while(p&&p!=sv) init[p]=1,p=fa[p];
if(!p) fill(all(init),0),res=0;
for(auto [u,v,w]:edge) if(init[v]&&!init[u]&&u!=sv) res=min(res,w-Min[v]);
printf("%lld\n",min(ans,ans-Min[sv]+val+res));
}
int main(){
int T=read();
while(T--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3744kb
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: 21ms
memory: 3760kb
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 656350099 1515267731 620818594 1937478556 654475526 14011...
result:
wrong answer 24th numbers differ - expected: '1431417780', found: '656350099'