QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#874042 | #4809. Maximum Range | xjx2009 | WA | 112ms | 76332kb | C++14 | 3.5kb | 2025-01-27 12:24:26 | 2025-01-27 12:24:27 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=1000010;
const ll INF=0x3f3f3f3f3f3f3f3f;
ll n,m;
ll e[N<<1],ne[N<<1],h[N],tot,l[N<<1];
ll ev[N<<1],nev[N<<1],hv[N],totv,lv[N<<1];
ll ec[N<<1],nec[N<<1],hc[N],totc;
ll dfn[N],low[N],cnt;
ll Max[N],Min[N];
ll b[N],bri[N],tc;
ll a1,b1,a2,b2,id1,id2;
ll ans,p1;
ll s,t;
ll d[N],top,nw[N];
ll q[N<<1],L,R;
ll l1[N],r1[N];
vector<ll> v;
ll s1[N];
void add(ll x,ll y,ll z){
e[++tot]=y;
ne[tot]=h[x];
h[x]=tot;
l[tot]=z;
}
void addv(ll x,ll y,ll z,ll w){
// cout<<x<<" "<<y<<" "<<z<<endl;
ev[++totv]=y;nev[totv]=hv[x];hv[x]=totv;lv[totv]=z;
ev[++totv]=x;nev[totv]=hv[y];hv[y]=totv;lv[totv]=w;
}
void addc(ll x,ll y){
// cout<<x<<" "<<y<<endl;
ec[++totc]=y;nec[totc]=hc[x];hc[x]=totc;
ec[++totc]=x;nec[totc]=hc[y];hc[y]=totc;
}
void tarjan(ll u,ll fa){
dfn[u]=low[u]=++cnt;
for(int i=h[u];i!=0;i=ne[i]){
if(e[i]==fa) continue;
if(!dfn[e[i]]){
tarjan(e[i],u);
low[u]=min(low[u],low[e[i]]);
if(low[e[i]]>dfn[u]){
bri[i]=bri[i^1]=1;
}
}
else{
low[u]=min(low[u],dfn[e[i]]);
}
}
}
void dfs(ll u,ll fa,ll col){
b[u]=col;
for(int i=h[u];i!=0;i=ne[i]){
if(b[e[i]]==b[u]){
Max[col]=max(Max[col],l[i]);
Min[col]=min(Min[col],l[i]);
}
if(e[i]==fa||bri[i]||b[e[i]]) continue;
dfs(e[i],u,col);
}
}
bool bfs(){
memset(d,0,sizeof(d));
L=1;R=0;
q[++R]=s;d[s]=1;nw[s]=hv[s];
while(L<=R){
ll u=q[L++];
for(int i=hv[u];i!=0;i=nev[i]){
if(lv[i]&&(!d[ev[i]])){
d[ev[i]]=d[u]+1;
nw[ev[i]]=hv[ev[i]];
if(ev[i]==t) return 1;
q[++R]=ev[i];
}
}
}
return 0;
}
ll dinic(ll u,ll flow){
if(u==t) return flow;
ll y=0;
for(int i=nw[u];i!=0&&flow;i=nev[i]){
nw[u]=i;
if(lv[i]&&d[ev[i]]==d[u]+1){
ll x=dinic(ev[i],min(lv[i],flow));
if(!x) d[ev[i]]=0;
flow-=x;y+=x;
lv[i]-=x;lv[i^1]+=x;
}
}
return y;
}
void dfs3(ll u,ll num){
for(int i=hc[u];i!=0;i=nec[i]){
if(s1[i]&&s1[i^1]) continue;
s1[i]=s1[i^1]=1;
dfs3(ec[i],num+1);
// return;
}
v.push_back(u);
return;
}
int main(){
tot=totv=totc=1;
cin>>n>>m;
for(int i=1;i<=m;i++){
ll x,y,z;
cin>>x>>y>>z;
add(x,y,z);
add(y,x,z);
}
for(int i=1;i<=n;i++){
if(!dfn[i]) tarjan(i,0);
}
memset(Min,0x3f,sizeof(Min));
for(int i=1;i<=n;i++){
if(!b[i]) dfs(i,0,++tc);
}
// cout<<Max[1]<<" "<<Min[1]<<" "<<tc<<endl;
p1=0,ans=-1;
for(int i=1;i<=tc;i++){
if(Max[i]-Min[i]>ans){
ans=Max[i]-Min[i];
// cout<<Max[i]<<" "<<Min[i]<<" "<<ans<<endl;
p1=i;
}
}
top=n;
s=++top;t=++top;
// cout<<endl;
for(int i=1;i<=n;i++){
if(b[i]!=p1) continue;
for(int j=h[i];j!=0;j=ne[j]){
if(b[e[j]]!=b[i]) continue;
if((!a1)&&l[j]==Min[p1]){
a1=i;b1=e[j];id1=j;
}
else if((!a2)&&l[j]==Max[p1]){
a2=i;b2=e[j];id2=j;
}
if(j==id1||j==(id1^1)||j==id2||j==(id2^1)) continue;
if(i<=e[j]){
addv(i,e[j],1,1);
}
}
}
addv(s,a1,1,0);addv(s,b1,1,0);
addv(a2,t,1,0);addv(b2,t,1,0);
ll res=0;
while(bfs()){
ll x=0;
while(x=dinic(s,INF)) res+=x;
}
// cout<<res<<endl;
// cout<<endl;
for(int i=2;i<=totv;i+=2){
if(lv[i]!=1){
ll x=ev[i],y=ev[i^1];
if(x==s||x==t||y==s||y==t) continue;
addc(x,y);
}
}
addc(a1,b1);addc(a2,b2);
cout<<ans<<endl;
dfs3(a1,1);
cout<<v.size()-1<<endl;
for(int i=1;i<v.size();i++){
cout<<v[i]<<" ";
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 52440kb
input:
5 7 1 2 1 1 3 -2 2 3 1 3 4 3 4 5 1 1 5 -1 2 5 2
output:
5 4 5 4 3 1
result:
ok ok
Test #2:
score: 0
Accepted
time: 80ms
memory: 61476kb
input:
99997 100000 12238 99016 352755196 99016 25485 -412473602 25485 2440 991507552 2440 31171 -181894654 36970 2440 -800167579 2440 41865 -148191946 96629 31171 847888506 36970 95740 395546542 27992 2440 647886610 99016 29557 369124914 80795 27992 -673871966 36970 3509 573208857 57672 29557 874406776 41...
output:
1959330954 37 2440 25485 99016 29557 57672 69259 68883 44442 4697 96048 94991 86274 74677 92617 86665 76022 72089 22074 96230 87712 51491 72825 3463 84407 67966 89628 84997 54073 68523 30288 88289 37694 96778 46301 34883 95092 31171
result:
ok ok
Test #3:
score: 0
Accepted
time: 84ms
memory: 63368kb
input:
99997 100000 41884 21178 -431811360 41884 42699 -450057006 36523 21178 582079730 21178 96679 615552614 63637 21178 498974417 96679 5108 235820276 75058 41884 220112636 35148 42699 589595309 36523 18002 -637739861 65854 5108 -312755792 45137 41884 -511118771 5108 31311 554050951 25335 35148 -28341059...
output:
1968439328 40 26071 90144 25926 52252 51434 69337 7577 5108 50088 6204 28694 41126 87303 83047 26981 54901 59612 14678 35287 78274 18331 89860 71024 99686 98098 23692 87673 42699 41884 45137 85192 38202 83711 83919 55330 71151 98733 99716 70298 33264
result:
ok ok
Test #4:
score: 0
Accepted
time: 86ms
memory: 63248kb
input:
99984 99999 33974 29867 335681778 33974 87468 348956829 83048 87468 320849805 29867 69456 -424530698 72457 69456 -950650074 53838 83048 755969166 85914 69456 569454441 51728 87468 -202158773 15970 29867 -865071002 15970 94894 697607001 94894 74694 616318126 33974 11496 -89287579 53838 34365 -6577379...
output:
1985932414 36 303 46598 61993 55857 79605 58540 57640 55808 85914 75496 32897 79841 13570 35807 50114 80694 78849 28078 91542 83656 97838 70238 5449 75902 51728 87468 83048 53838 29864 76013 1652 83298 23026 27866 92249 11395
result:
ok ok
Test #5:
score: 0
Accepted
time: 84ms
memory: 65364kb
input:
99988 99992 8584 11873 -811540160 68064 11873 -930246087 11873 60056 916668870 68064 82193 -859062523 60056 75072 790866030 27767 75072 357619485 75072 78221 411650300 39636 82193 264106928 6675 60056 933851261 71747 78221 -508471038 11873 92771 -665232168 34402 27767 -906494982 11873 42714 63734230...
output:
1932268861 30 83884 20678 16385 62720 25891 75176 34179 64174 38274 8778 99809 28745 6675 60056 75072 91957 3186 29873 5185 88236 50628 2518 83283 23798 89787 8975 26922 21107 93559 75593
result:
ok ok
Test #6:
score: 0
Accepted
time: 81ms
memory: 63440kb
input:
99996 99996 58191 98120 261718607 91298 98120 471683748 58191 68921 217652908 67441 91298 -731916804 78177 68921 810185021 98120 54747 -35446486 78177 2822 -409569426 91298 68058 -897038977 68921 39067 892161204 30165 78177 379543758 32418 98120 -139944101 11281 68921 422411872 37751 32418 331606200...
output:
1752928792 25 67249 25934 42296 85525 18913 29915 78216 34081 11281 68921 58191 48440 3783 3308 58464 1917 30739 77560 4369 46983 74019 64478 81854 65221 16812
result:
ok ok
Test #7:
score: 0
Accepted
time: 85ms
memory: 65492kb
input:
99996 100000 39127 4358 657531703 4358 66528 484843263 47215 4358 -856669390 47215 26179 -147254695 24822 39127 -635228854 81984 26179 600617794 24822 60559 327733708 39127 23879 286268283 95563 81984 -766366787 96587 24822 723252700 23879 13711 -303309809 60559 38379 992907085 60559 6012 -15086498 ...
output:
1948904917 51 74141 92093 19383 58919 73608 27325 12024 60168 16150 13711 23879 39127 24822 10570 52647 79459 24450 54151 79904 28267 1066 23254 53517 37704 67362 38379 60559 24822 96587 8030 37095 66385 91374 70789 41482 30145 90743 13465 63827 91154 38051 24890 82877 61378 4358 24485 97465 31390 6...
result:
ok ok
Test #8:
score: 0
Accepted
time: 83ms
memory: 63668kb
input:
99983 99998 360 38113 273639182 29807 360 -492749399 360 45494 960572841 67090 45494 -168787586 38113 61765 -90469418 71988 360 -556152065 67090 77653 704061103 30847 38113 542389160 84363 30847 295740326 30847 62591 -916431414 86104 77653 878763485 45494 11422 -795069866 86104 64096 714130240 61765...
output:
1972142685 35 1877 74104 85692 24073 31895 12093 71599 84363 30847 38113 360 45494 67090 85762 64559 25273 47913 1904 50615 97340 8333 42546 32497 58830 58078 3710 93146 3381 46673 75450 28454 29807 67396 49296 2351
result:
ok ok
Test #9:
score: 0
Accepted
time: 80ms
memory: 59324kb
input:
99991 99993 70785 63179 -402654804 91872 63179 -441007900 30847 70785 779215016 72954 63179 -228470351 92375 30847 534166099 49724 63179 -37611056 44235 70785 -443931516 38220 44235 -187234181 44235 63035 -237171010 30847 50624 118354734 92375 24980 -382011924 56418 50624 -658160541 50624 10991 -966...
output:
1793776773 23 72954 63179 91872 86737 52773 85483 30214 53000 97526 57891 56013 66274 62402 58361 3092 73442 44630 31140 84999 46153 9524 70428 40199
result:
ok ok
Test #10:
score: 0
Accepted
time: 80ms
memory: 59288kb
input:
99995 99997 93178 82375 -969044986 93178 19072 -204354005 35344 93178 172625135 93178 56390 -284098052 88798 19072 842699965 82375 24707 508376359 19072 71420 2142150 40446 93178 -437060610 40446 51377 -236216782 51377 89470 -349454494 19614 71420 -747727667 89470 14659 91615005 35344 49064 -7684125...
output:
1928930936 17 19871 6259 13782 41657 3529 84372 80688 55069 65439 61912 53143 48876 3209 51377 40446 93178 82375
result:
ok ok
Test #11:
score: 0
Accepted
time: 82ms
memory: 61536kb
input:
99984 99992 13417 15144 707033172 79217 13417 -472387862 26033 13417 -36135406 13417 16174 -89686765 16174 96840 613288820 13417 11444 -398371819 11444 41716 627519572 41716 5951 233568303 96840 41978 -755500822 55150 41716 715325856 41978 88656 816236450 15144 5839 644375332 88656 95763 878003222 6...
output:
1958415767 40 65474 44860 12538 28616 36613 4719 62781 15965 90176 17104 96840 16174 13417 26033 11993 93511 80696 35258 84539 78871 41533 72086 64840 71601 61488 1019 19346 20549 6162 15155 65480 95763 95939 39284 33954 92172 82891 26100 81816 24802
result:
ok ok
Test #12:
score: 0
Accepted
time: 109ms
memory: 76332kb
input:
80000 98516 26903 1777 -924244496 60501 50043 -169932745 73857 9688 924119596 51789 37304 -395289958 66012 19584 677645038 36094 31329 -438857807 23716 36356 333796707 64800 10550 -272867916 24677 61533 -276717055 37159 23410 564922612 57429 13265 -535543043 53527 15651 304660186 13261 58532 2102669...
output:
1999981013 59626 43766 27096 51881 35569 11119 42774 29552 44888 57998 39597 25312 3377 34441 3626 44309 14113 62887 71553 1903 31984 17494 43196 59971 9076 68351 5484 14532 42436 42679 20131 38713 48211 76837 36258 66939 5466 44847 36785 37696 33372 31066 68154 39243 11440 31704 27765 3863 79718 14...
result:
ok ok
Test #13:
score: 0
Accepted
time: 96ms
memory: 62780kb
input:
80000 94684 787 61972 -860542411 20083 27809 428832046 4166 26381 209001312 20451 29135 61290072 27638 15329 -490707445 59773 62375 228047113 41999 67706 -799550202 19069 6355 948713742 55898 70936 -879012749 13950 62531 -590275719 50627 17883 622866713 69768 13748 953427970 48538 24420 123552876 18...
output:
1999848367 19139 43172 5348 55522 70860 12214 37725 70132 32864 7654 1163 49503 62362 44034 5010 38047 44578 18048 27465 49095 24844 27233 31734 62997 54281 20322 66252 59300 72663 27739 18521 20579 43586 74981 54296 26364 16817 63938 56086 32276 68821 25367 46182 50026 15700 54616 67380 76451 38678...
result:
ok ok
Test #14:
score: 0
Accepted
time: 107ms
memory: 71340kb
input:
85000 100000 12684 20697 -831379236 10219 41211 -539041569 17720 69181 -525999432 58189 3530 -215648248 29815 3583 -430621047 9529 62763 -641420982 54333 16217 517578175 3636 39822 -659701191 77761 44172 489371539 55825 60143 523113008 70503 23773 907033043 33924 58465 321062719 14586 28291 -3111270...
output:
1999860030 29750 21328 14921 6007 30625 80860 18370 10728 28546 70497 30646 28454 45551 46506 3014 13840 34416 83428 15972 25642 12274 13183 57815 61446 79912 2943 48632 31342 603 31636 34453 11871 60714 61787 37020 69822 76 4109 65937 7563 44750 29137 72596 66436 65555 50888 19576 63412 14275 17934...
result:
ok ok
Test #15:
score: 0
Accepted
time: 112ms
memory: 68440kb
input:
90000 98235 4034 56551 535462424 1285 78054 -432396039 13482 78432 326444126 36922 32666 -423303402 46270 14278 327106206 73367 11943 -120750644 57985 1074 521321207 51396 70877 604419844 80121 19287 -807213060 83316 29903 437891049 11641 29638 -109912627 54265 78774 -197898831 30288 41596 5540178 6...
output:
1999860693 31500 74354 69552 38307 35746 60204 81759 48942 76705 61878 36438 52026 57805 83148 72879 29263 7250 43609 74637 81369 23763 69549 50004 36021 60671 29385 89984 80209 56560 53468 10843 77706 83330 54169 30975 78918 50851 50399 56962 78757 59524 56167 49511 19812 82181 84405 4148 83145 237...
result:
ok ok
Test #16:
score: 0
Accepted
time: 0ms
memory: 51908kb
input:
3 3 1 2 233 2 3 233 3 1 233
output:
0 3 3 2 1
result:
ok ok
Test #17:
score: -100
Wrong Answer
time: 100ms
memory: 70072kb
input:
80000 98516 79421 53468 -473723591 32949 9872 -473723591 62946 8406 -473723591 59103 43576 -473723591 16122 2510 -473723591 71372 57984 -473723591 69594 62336 -473723591 62408 2967 -473723591 55049 42762 -473723591 59003 53689 -473723591 40025 11987 -473723591 45334 77817 -473723591 78189 13603 -473...
output:
473723591 1 1
result:
wrong answer Cycle does not contain any edges