QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#429284 | #8136. Rebellious Edge | lmeowdn# | RE | 63ms | 9288kb | C++14 | 1.2kb | 2024-06-02 10:48:15 | 2024-06-02 10:48:15 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=1e5+5,M=1e5+5,inf=1e12;
struct edge{int u,v,w;}e[M];
int n,m,root,mn[N],fa[N],tp[N],lp[N],tot,ans,spe;
int zl(){
root=1; tot=0,ans=0;
for(int i=1;i<=n;i++) mn[i]=fa[i]=tp[i]=lp[i]=0;
while(1){
for(int i=1;i<=n;i++) mn[i]=inf,fa[i]=tp[i]=lp[i]=0;
for(int i=1,u,v,w;i<=m;i++) //Step 1
if(e[i].u!=e[i].v&&(w=e[i].w)<mn[v=e[i].v])
mn[v]=w,fa[v]=e[i].u;
mn[root]=0;
for(int u=1;u<=n;u++){ans+=mn[u];if(mn[u]==inf)return -1;} //Step 2
for(int u=1,v=1;u<=n;u++,v=u){ //Step 3
while(v!=root&&tp[v]!=u&&!lp[v]) tp[v]=u,v=fa[v];
if(v!=root&&!lp[v]){
lp[v]=++tot;
for(int k=fa[v];k!=v;k=fa[k]) lp[k]=tot;
}
}
if(!tot) return ans; //Step 4
for(int i=1;i<=n;i++) if(!lp[i]) lp[i]=++tot; //Step 5
for(int i=1;i<=m;i++) //Step 6
e[i].w-=mn[e[i].v],e[i].u=lp[e[i].u],e[i].v=lp[e[i].v];
n=tot, root=lp[root], tot=0; //Step 7
}
}
signed main(){
int T; cin>>T;
while(T--) {
scanf("%lld%lld",&n,&m);
for(int i=1,u,v,w;i<=m;i++)
scanf("%lld%lld%lld",&u,&v,&w),e[i]=(edge){u,v,w};
printf("%lld\n",zl());
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 7860kb
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: 0
Accepted
time: 38ms
memory: 5956kb
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:
ok 50000 numbers
Test #3:
score: 0
Accepted
time: 47ms
memory: 5940kb
input:
50000 4 6 1 3 754771977 2 3 517886121 1 4 392356144 1 2 702785740 3 4 888230940 2 1 829304957 4 6 2 4 255940037 1 2 380616616 1 4 819140865 3 4 36965607 1 3 496378345 4 3 652252309 4 6 2 4 179216787 4 2 401136502 1 2 715271531 1 3 859345710 3 4 24470489 1 4 148650889 4 6 3 2 20348069 1 2 152861663 1...
output:
1613028005 913960568 1284952701 1294564551 199037829 1236121455 983447828 1161647829 1289612543 2444304029 431872921 1272140390 949528400 2328941976 696541797 363553357 999320657 2221495861 879052116 1287531701 912524980 1072419431 1187727045 1571845059 1184110956 1136184594 430092563 1132894799 962...
result:
ok 50000 numbers
Test #4:
score: 0
Accepted
time: 31ms
memory: 5952kb
input:
25000 8 8 5 3 903349949 5 6 230898386 6 7 456285865 2 3 235279998 3 8 75554555 1 2 534445049 2 5 91984463 3 4 930308596 8 8 4 8 542820075 2 1 505042427 1 2 383870408 1 4 115526736 2 5 120351002 4 7 303640587 2 3 343568518 1 6 643773351 8 8 1 2 362133720 1 3 865161709 2 4 418085685 2 5 431348178 1 6 ...
output:
2554756912 2453550677 3352164037 2548011007 2946870949 2974098273 3702415713 3077518439 3933251840 3561133042 3661712043 3019312810 3492992897 3247019175 2091050366 3228447489 4450182982 4547489101 2740661646 3507248157 3421959708 3851505640 4373872101 3925763540 4160440497 2854028840 2797343113 338...
result:
ok 25000 numbers
Test #5:
score: 0
Accepted
time: 35ms
memory: 7864kb
input:
25000 8 9 1 3 8441923 2 8 804745873 1 4 814834377 1 5 576030519 8 5 953473409 2 6 714140471 2 5 77120962 1 2 511057482 4 7 145441656 8 9 1 2 276813465 4 5 165256724 1 4 522691074 1 7 417909938 1 8 962962225 1 3 805076553 2 6 623033783 8 4 647061395 3 4 815842049 8 9 3 5 20296808 3 6 597281111 1 2 76...
output:
3075782744 3773743762 3278650492 3231838190 3374994424 2926778533 4348233362 2822143392 3076722255 2596140564 2247390371 3854832394 4319882601 3180102719 3094944789 3435791714 4405129128 2340656122 2604427605 3572178751 3803314864 3351077905 3767890679 3567633269 3527865042 2895660631 3817016063 188...
result:
ok 25000 numbers
Test #6:
score: 0
Accepted
time: 37ms
memory: 7948kb
input:
25000 8 10 7 4 221904276 1 5 121915318 1 3 600836161 4 7 488300065 1 4 921802874 1 2 757229498 2 3 307033253 3 6 824028669 1 7 171060397 3 8 972502017 8 10 3 5 957779273 1 2 548128903 1 3 973419517 6 5 565445547 3 6 551907938 1 7 793064110 7 8 466118245 1 4 353130404 5 6 927135859 2 8 758403259 8 10...
output:
3375673428 4251214664 3757000574 3166584844 2788975514 2116310775 2715058780 3287246298 4025635987 3624892566 2769498633 2958022862 4290202794 2920552027 3277314894 3924975405 3237273140 2821648429 2360729796 3475710401 3972691777 4115444652 2692775193 3118467245 3132060418 2872337367 4722221967 264...
result:
ok 25000 numbers
Test #7:
score: 0
Accepted
time: 40ms
memory: 7996kb
input:
25000 8 12 2 6 449032103 1 5 646093619 7 8 888519232 2 4 749443783 4 5 475422884 1 2 434507939 6 7 525256368 3 7 280175107 6 4 267731039 2 3 727214343 5 7 91009177 1 6 499664950 8 12 4 6 657574176 1 2 5296179 5 7 312584650 3 4 999483683 2 3 491085057 2 5 719151963 7 2 741976162 1 4 636522791 1 6 458...
output:
3333436717 2807585131 4920461769 3090434252 2560790821 2380624756 2626592068 3772048085 2624368713 1844640463 2565437000 2622643735 2416136939 2618783813 2813654707 3205164529 3974831765 3722108973 2648137059 3165927114 2050934228 3202220845 3802856334 3396453248 2597210524 3975316045 2920520206 301...
result:
ok 25000 numbers
Test #8:
score: 0
Accepted
time: 32ms
memory: 7924kb
input:
200 1000 1000 239 588 133547926 183 534 928409215 241 330 641475654 535 957 589849559 10 620 614874088 309 928 569710487 3 11 494917111 543 890 68083403 400 918 317003458 251 321 376382937 147 160 903343522 452 924 589468457 20 197 468355859 108 599 820206568 230 378 910782377 220 293 903007367 115 ...
output:
497713793250 492962928026 507239162096 489416880760 498919499738 494390387999 505624748297 502273360170 487437969890 492882286087 488855359914 493516382821 492154885694 494693728666 501962518846 492234657903 499522656353 518342153867 494724608349 500831455708 498690702121 494557144727 503463772263 5...
result:
ok 200 numbers
Test #9:
score: 0
Accepted
time: 32ms
memory: 5976kb
input:
200 1000 1005 508 559 424192332 74 278 148045823 327 993 663345255 157 544 928557499 20 41 523494941 51 254 437200278 2 18 506681783 782 928 138677470 12 838 503910272 156 645 862366636 200 508 218413621 231 635 194448744 611 619 124981290 255 469 614512720 134 333 818641028 181 412 921437717 5 184 ...
output:
501129145945 508207765375 504606717649 501142420466 496433756584 508422487274 507007286774 489195446348 499101136725 504420343219 485311666315 489123709490 499113103288 496900542557 481508383246 492384657383 496513770885 509736025057 495760467649 497002983791 491910563136 494017531362 498058386677 4...
result:
ok 200 numbers
Test #10:
score: 0
Accepted
time: 53ms
memory: 8024kb
input:
200 1000 2000 39 238 864415857 26 156 707268612 146 546 499579162 417 761 332452795 10 410 961630809 587 745 361841763 131 716 968927701 834 888 74441039 142 781 613126744 221 273 614239182 900 945 849004495 668 938 475774163 297 748 413513365 679 862 473286635 262 523 476328885 852 977 55421955 256...
output:
377088491179 368197541228 378166264449 385285967410 363829015221 378666687744 376662529392 383676533289 374782208099 373676435135 373318306315 377833081332 386724232469 362733514349 384542854056 376214712692 376322456811 374258497868 379984477018 375276245615 384876693250 369634790945 375323862443 3...
result:
ok 200 numbers
Test #11:
score: 0
Accepted
time: 63ms
memory: 5904kb
input:
160 1000 3000 361 390 785950892 564 577 524217752 334 931 11528988 228 304 70325077 694 747 1928318 474 945 249706711 239 912 124894561 736 834 191207404 215 303 773416167 182 763 70656237 454 457 937174144 346 568 535198270 666 676 739691416 478 631 580490353 263 625 449713668 64 907 740013425 44 2...
output:
299833687308 304977657092 307270423217 294716038190 309503138234 305635005136 310814442139 312934222331 299600885716 305288964059 308283739944 300775461259 301205352773 309409716517 296295870502 294594618853 299117813318 295956044320 300467617156 305256736121 305862015525 314513636581 294398803135 2...
result:
ok 160 numbers
Test #12:
score: 0
Accepted
time: 15ms
memory: 9288kb
input:
1 1000 100000 50 415 104868280 691 700 424553918 111 968 56214986 269 529 173077590 52 117 925712505 535 560 991283286 444 729 923471207 917 964 567645976 122 305 958342700 682 945 719398103 383 527 201210989 304 318 705615051 152 926 526523918 18 527 542190718 253 593 892670139 688 706 379199924 57...
output:
23974268933
result:
ok 1 number(s): "23974268933"
Test #13:
score: -100
Runtime Error
input:
1 200000 200000 46957 87435 612302422 91840 173370 891722968 25009 74170 884361660 74176 99042 131797405 16139 58764 648773820 58722 191045 349784377 24095 72719 77508332 7510 25316 299592819 51067 124120 258305363 65132 104676 752760402 19337 21868 193391749 21056 155761 223617084 69406 105016 6650...