QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#878657#4809. Maximum RangeJohnAlfnovAC ✓123ms42060kbC++173.4kb2025-02-01 16:34:292025-02-01 16:34:35

Judging History

This is the latest submission verdict.

  • [2025-02-01 16:34:35]
  • Judged
  • Verdict: AC
  • Time: 123ms
  • Memory: 42060kb
  • [2025-02-01 16:34:29]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
vector<pair<int,int>>g[100005];
int dfn[100005],low[100005],st[100005],col[100005],t1=0,t2=0;
void tarjan(int x,int la){
	dfn[x]=low[x]=++t1;
	st[++t2]=x;
	for(auto pi:g[x]){
		int cu=pi.first;
		if(cu==la)continue;
		if(!dfn[cu]){
			tarjan(cu,x);
			low[x]=min(low[x],low[cu]);
		}else{
			low[x]=min(low[x],dfn[cu]);
		}
	}
	if(dfn[x]!=low[x])return;
	int pp;
	do{
		pp=st[t2--];
		col[pp]=x;
	}while(pp!=x);
}
int mn[100005],mx[100005];
pair<int,int>zn[100005],zx[100005];
namespace MF{
	int n,S,T;
	int hd[200005],nxt[500005],c[500005],dy[500005],tot=1;
	int cur[200005],l[200005];
	void addedge(int u,int v,int w){
		nxt[++tot]=hd[u],hd[u]=tot;
		c[tot]=w,dy[tot]=v;
	}
	void adde(int u,int v,int w){
		addedge(u,v,w);addedge(v,u,0);
	}
	long long ans;
	void clear(){
		for(int i=1;i<=n;++i)hd[i]=0;
		for(int i=1;i<=tot;++i)nxt[i]=c[i]=dy[i]=0;
		tot=1;ans=0;
	}
	bool getc(){
		for(int i=1;i<=n;++i)l[i]=1e9,cur[i]=hd[i];
		l[S]=0;
		queue<int>q;
		q.emplace(S);
		while(q.size()){
			int x=q.front();
			q.pop();
			for(int i=hd[x];i;i=nxt[i]){
				if(!c[i])continue;
				int cu=dy[i];
				if(l[cu]>l[x]+1){
					l[cu]=l[x]+1;
					q.emplace(cu);
				}
			}
		}
		return l[T]<1e9;
	}
	int dinic(int x,int rl){
		if(x==T){
			ans+=rl;
			return rl;
		}
		int rr=rl;
		for(int i=cur[x];i;i=nxt[i]){
			cur[x]=i;
			if(!c[i])continue;
			int cu=dy[i];
			if(l[cu]!=l[x]+1)continue;
			int zz=dinic(cu,min(rr,c[i]));
			c[i]-=zz,c[i^1]+=zz;
			rr-=zz;
			if(!rr)break;
		}
		return rl-rr;
	}
}
set<int>gg[100005];
void jia(int x,int y){
	gg[x].emplace(y);
	gg[y].emplace(x);
}
void dfs(int x,int fl){
	while(gg[x].size()){
		int y=*(gg[x].begin());
		gg[x].erase(y);gg[y].erase(x);
		dfs(y,1);
	}
	if(fl)printf("%d ",x);
}
void oula(int n){
	int r=0,he=0;
	for(int i=1;i<=n;++i){
		if(gg[i].size())r=i;
		he+=gg[i].size();
	}
	printf("%d\n",he/2);
	dfs(r,0);
}
int main(){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=1;i<=m;++i){
		int u,v,w;
		scanf("%d%d%d",&u,&v,&w);
		g[u].emplace_back(v,w);
		g[v].emplace_back(u,w);
	}
	tarjan(1,0);
	for(int i=1;i<=n;++i)mn[i]=1e9+7,mx[i]=-1e9-7;
	for(int i=1;i<=n;++i)for(auto pi:g[i]){
		int cu=pi.first,c2=pi.second;
		if(col[i]!=col[cu]||i>cu)continue;
		int c=col[i];
		if(mn[c]>c2)mn[c]=c2,zn[c]=make_pair(i,cu);
		if(mx[c]<=c2)mx[c]=c2,zx[c]=make_pair(i,cu);
	}
	int zd=-1,wz=0;
	pair<int,int>p1,p2;
	for(int i=1;i<=n;++i)if(mx[i]>=mn[i]){
		if(zd<mx[i]-mn[i]){
			zd=mx[i]-mn[i];wz=i;
			p1=zx[i];p2=zn[i];
		}
	}
	MF::n=n+2,MF::S=n+1,MF::T=n+2;
	for(int i=1;i<=n;++i)for(auto pi:g[i]){
		int cu=pi.first;
		if(col[i]!=wz||col[cu]!=wz||i>cu)continue;
		if(i==p1.first&&cu==p1.second)continue;
		if(i==p2.first&&cu==p2.second)continue;
		MF::addedge(i,cu,1);MF::addedge(cu,i,1);
	}
	MF::addedge(n+1,p1.first,1);MF::addedge(p1.first,n+1,0);
	MF::addedge(n+1,p1.second,1);MF::addedge(p1.second,n+1,0);
	MF::addedge(p2.first,n+2,1);MF::addedge(n+2,p2.first,0);
	MF::addedge(p2.second,n+2,1);MF::addedge(n+2,p2.second,0);
	while(MF::getc())MF::dinic(MF::S,INT_MAX);
	printf("%d\n",zd);
	jia(p1.first,p1.second);
	jia(p2.first,p2.second);
	for(int i=1;i<=n;++i){
		for(int j=MF::hd[i];j;j=MF::nxt[j]){
			if(MF::c[j])continue;
			int cu=MF::dy[j];
			if(cu>n)continue;
			jia(i,cu);
		}
	}
	oula(n);
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 23056kb

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: 48ms
memory: 25600kb

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
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 2440 25485 

result:

ok ok

Test #3:

score: 0
Accepted
time: 52ms
memory: 24712kb

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
99716 98733 71151 55330 83919 83711 38202 85192 45137 41884 42699 87673 23692 98098 99686 71024 89860 18331 78274 35287 14678 59612 54901 26981 83047 87303 41126 28694 6204 50088 5108 7577 69337 51434 52252 25926 90144 26071 33264 70298 

result:

ok ok

Test #4:

score: 0
Accepted
time: 42ms
memory: 26796kb

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
97838 83656 91542 28078 78849 80694 50114 35807 13570 79841 32897 75496 85914 55808 57640 58540 79605 55857 61993 46598 303 11395 92249 27866 23026 83298 1652 76013 29864 53838 83048 87468 51728 75902 5449 70238 

result:

ok ok

Test #5:

score: 0
Accepted
time: 49ms
memory: 25928kb

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
99809 28745 6675 60056 75072 91957 3186 29873 5185 88236 50628 2518 83283 23798 89787 8975 26922 21107 93559 75593 83884 20678 16385 62720 25891 75176 34179 64174 38274 8778 

result:

ok ok

Test #6:

score: 0
Accepted
time: 44ms
memory: 26796kb

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
85525 42296 25934 67249 16812 65221 81854 64478 74019 46983 4369 77560 30739 1917 58464 3308 3783 48440 58191 68921 11281 34081 78216 29915 18913 

result:

ok ok

Test #7:

score: 0
Accepted
time: 45ms
memory: 24492kb

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
97465 31390 67183 42006 3750 74141 92093 19383 58919 73608 27325 12024 60168 16150 13711 23879 39127 24822 60559 38379 67362 37704 53517 23254 1066 28267 79904 54151 24450 79459 52647 10570 24822 96587 8030 37095 66385 91374 70789 41482 30145 90743 13465 63827 91154 38051 24890 82877 6...

result:

ok ok

Test #8:

score: 0
Accepted
time: 45ms
memory: 25008kb

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
97340 50615 1904 47913 25273 64559 85762 67090 45494 360 38113 30847 84363 71599 12093 31895 24073 85692 74104 1877 2351 49296 67396 29807 28454 75450 46673 3381 93146 3710 58078 58830 32497 42546 8333 

result:

ok ok

Test #9:

score: 0
Accepted
time: 43ms
memory: 26696kb

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
97526 57891 56013 66274 62402 58361 3092 73442 44630 31140 84999 46153 9524 70428 40199 72954 63179 91872 86737 52773 85483 30214 53000 

result:

ok ok

Test #10:

score: 0
Accepted
time: 48ms
memory: 25720kb

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
93178 82375 19871 6259 13782 41657 3529 84372 80688 55069 65439 61912 53143 48876 3209 51377 40446 

result:

ok ok

Test #11:

score: 0
Accepted
time: 44ms
memory: 26792kb

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
96840 17104 90176 15965 62781 4719 36613 28616 12538 44860 65474 24802 81816 26100 82891 92172 33954 39284 95939 95763 65480 15155 6162 20549 19346 1019 61488 71601 64840 72086 41533 78871 84539 35258 80696 93511 11993 26033 13417 16174 

result:

ok ok

Test #12:

score: 0
Accepted
time: 94ms
memory: 34236kb

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
80000 55390 60195 41126 30692 37839 69332 3206 26774 78431 77274 15753 9791 78574 32393 36467 52744 13647 5399 65821 47911 6253 67400 73347 73035 65541 6935 7138 30281 29621 76613 35327 38441 16502 52015 25367 29120 33036 17316 38247 45726 21482 55106 37638 76616 31205 38996 62276 2...

result:

ok ok

Test #13:

score: 0
Accepted
time: 58ms
memory: 30548kb

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
79997 17826 69244 3292 29162 47655 27827 72511 71694 36283 69973 40642 72176 51134 46917 18341 41436 5137 14738 28941 21200 20519 26718 43474 79386 62402 22480 79668 74545 48960 27798 24075 65056 11461 47799 63074 12612 71017 7039 8036 25279 22264 27069 57222 53084 41441 30850 15056...

result:

ok ok

Test #14:

score: 0
Accepted
time: 76ms
memory: 31812kb

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
84997 50092 20521 36605 11581 43717 60669 81625 23928 39893 81982 82143 13122 75441 78932 74933 62323 30512 8081 14093 16394 19815 64474 24631 3774 78158 11226 74314 11958 62359 74484 61049 37354 32556 42496 3171 44410 14293 77080 63595 83122 71380 49018 25602 24434 65687 52273 1381...

result:

ok ok

Test #15:

score: 0
Accepted
time: 80ms
memory: 34408kb

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
89999 88553 76307 74219 25266 1632 56225 31590 65772 84199 74836 35003 78371 82806 47797 84381 48675 68806 81293 23772 56832 57797 63413 59895 56263 87792 65231 62085 51979 16829 16828 86379 48477 3439 38220 20353 62444 74838 39421 86158 39761 25065 22894 31743 68172 68652 70276 831...

result:

ok ok

Test #16:

score: 0
Accepted
time: 1ms
memory: 23060kb

input:

3 3
1 2 233
2 3 233
3 1 233

output:

0
3
3 2 1 

result:

ok ok

Test #17:

score: 0
Accepted
time: 71ms
memory: 30156kb

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:

0
28141
79997 54628 35576 51602 78577 45804 12074 45745 67846 41169 53402 56558 18195 13678 76213 18221 38816 53316 33977 20646 75339 18298 67369 74899 65602 72943 49917 75935 73180 67213 64075 74664 29031 50613 31347 69940 139 43349 76658 37652 14569 39312 12804 18669 50081 46248 77854 16618 43791 ...

result:

ok ok

Test #18:

score: 0
Accepted
time: 47ms
memory: 29696kb

input:

80000 94684
47824 74620 763247771
43134 68794 613332131
70242 39382 613332131
66806 65879 75791783
75560 29585 -737165426
45214 2688 -196239255
8769 36609 75791783
37142 48567 891334271
6698 68647 -647334986
19812 30219 75791783
54674 54464 75791783
37193 432 312981361
61862 8510 924505446
46265 217...

output:

0
29
78164 48675 17743 56683 1 16248 19811 17743 15046 55290 57237 19610 696 22921 62599 10080 29284 58806 71191 60664 24300 58806 33436 29284 20995 10080 57237 52484 15046 

result:

ok ok

Test #19:

score: 0
Accepted
time: 53ms
memory: 28928kb

input:

85000 100000
31990 69099 -1731161
74081 84474 -843271979
69532 6116 -722727335
3141 60259 343298872
38598 67962 -767329308
30683 39703 -891912298
38710 77516 588627702
73818 32961 -280568563
67819 68460 -280568563
83602 37746 447820859
62363 72940 424564587
75905 14504 -672710766
36204 47164 -309254...

output:

0
4
81479 74243 22941 1 

result:

ok ok

Test #20:

score: 0
Accepted
time: 68ms
memory: 30624kb

input:

90000 98235
69866 86722 78531852
30106 32321 327858881
79041 9815 -587712775
79725 49462 -125435461
69389 86092 -1577070
50897 14792 41432121
56667 24207 607577044
57695 13616 -918716805
85852 55356 373162845
14242 66828 373162845
22169 53706 122244212
12914 13232 -32572189
89479 43813 373162845
170...

output:

0
31500
90000 77026 52660 19169 65281 32464 76413 70506 11806 36585 49196 10495 67429 32779 47832 25404 24233 25898 49241 89669 85028 28696 361 72110 81982 28591 50693 9879 71152 62564 65543 78414 81808 46272 89817 84722 20057 56882 58345 70665 39975 2883 37103 213 26004 74794 63063 35873 40744 1206...

result:

ok ok

Test #21:

score: 0
Accepted
time: 123ms
memory: 38984kb

input:

95000 95100
62823 7972 -98597476
11872 80236 -376224359
36239 18998 152179746
2941 59846 675971975
31009 87130 277327502
46848 88613 920187456
32265 89904 394908111
32665 71981 -717413241
22224 29525 -692676756
65253 56311 -576492743
55461 93031 -170229140
55015 388 -497138138
45550 26917 -268626991...

output:

1915204480
95000
95000 83080 57148 40731 85072 56410 92705 37864 57193 84749 35892 53652 6444 70355 75388 43025 26607 2469 21279 68139 38707 44762 65278 26642 87694 17189 39241 94347 15381 45227 56223 42515 24624 26364 35436 45211 61753 94432 67785 10371 67910 25570 86023 8644 76249 27085 20781 9480...

result:

ok ok

Test #22:

score: 0
Accepted
time: 122ms
memory: 40436kb

input:

95000 96000
8007 59556 217030444
46023 14373 -128335181
570 85822 126207845
80762 41869 723617383
46198 31613 465974823
58802 50379 140015731
2888 19011 720151475
74117 24138 -552326878
17454 57986 -347055744
36830 84433 -534562264
50548 57713 -335694553
93993 32600 -419354047
32724 61082 -652619648...

output:

1929035844
95000
95000 63648 1750 49668 25791 88341 51891 44202 37251 72658 17217 12941 16614 62061 36183 51807 92703 1130 17151 17522 62580 16591 16177 14130 41726 47028 222 82146 21555 62245 48402 61111 25402 33493 66375 18807 45215 74061 63546 11732 57711 73032 14953 32810 15140 3048 94410 8292 7...

result:

ok ok

Test #23:

score: 0
Accepted
time: 111ms
memory: 39524kb

input:

95000 100000
34956 60336 45395839
40278 30507 251182515
25816 87070 224950942
60653 29762 -585384516
62881 91427 422022135
44457 4481 606128079
41132 25251 -160882610
32094 84433 691041934
36977 23421 351841455
86462 6561 -425673978
22134 14854 -534276133
21754 19992 795688135
47865 45188 433897879
...

output:

1906862084
95000
95000 64900 2331 33955 86656 48891 17442 2855 59654 66666 4657 32539 4339 94463 84222 66270 63266 44447 4850 21514 68654 23813 31622 72499 91242 2086 94344 55865 70310 31848 87341 19427 89305 6213 33654 26423 56113 5555 69545 14164 5945 4402 64859 71462 91900 75117 91329 67721 73970...

result:

ok ok

Test #24:

score: 0
Accepted
time: 120ms
memory: 40140kb

input:

99900 100000
70100 76896 -51386609
16964 79827 516332810
7183 80746 628092448
41385 96532 501920794
42994 48777 82641247
96028 56184 -67050812
32451 50173 -544563060
82225 66648 -50784922
2128 11900 360969680
70814 64690 710732642
83492 60589 106381086
94529 85166 -526924556
46377 77116 948457811
54...

output:

1895701144
99900
99900 75382 25444 39925 89763 63927 63658 40906 52656 40836 93966 20870 17372 75194 34908 37714 16069 95406 19010 74855 76843 15115 15249 86671 51748 23612 6338 72302 50429 37832 80782 97402 90163 41079 97167 47417 24514 96314 28017 14495 93402 81272 96030 17067 1903 49149 31991 473...

result:

ok ok

Test #25:

score: 0
Accepted
time: 120ms
memory: 40452kb

input:

99990 100000
4011 68478 536045518
71538 84132 -940987458
2848 98397 -45141986
69542 48174 -35014400
28195 49500 447539981
97581 41986 205494807
31381 26461 -370585813
42843 8193 -69421974
33975 6124 -486808164
97261 43284 264346869
82796 18093 -14556989
32565 65612 -835815105
1213 99363 105551948
13...

output:

1888920939
99990
99990 70280 38171 59480 70107 12416 85370 12925 66422 81900 64673 42591 49650 7572 5898 53860 61492 82959 70781 76679 33257 74206 38672 68385 2292 3880 13975 26288 854 25518 85265 57730 87088 6261 91966 84054 62046 2293 44420 20022 13379 44432 89041 69428 38662 91487 20012 69702 720...

result:

ok ok

Test #26:

score: 0
Accepted
time: 118ms
memory: 42060kb

input:

100000 100000
59304 76015 219875086
5260 1994 159258480
64311 53789 590132314
26577 82648 -132474446
81935 37887 643839658
75588 65296 -360133388
36819 63467 -804039106
83511 11104 307929972
82884 73421 -18000026
68841 40306 889617346
29987 70305 -422194823
54347 24412 -95291130
18090 67916 -9315885...

output:

1843628719
100000
100000 68779 86610 87419 64925 51858 62343 53117 72908 17468 59483 15925 98936 48376 1396 97891 60799 43008 24037 18465 16029 28254 99548 86483 26300 46045 3837 77384 61720 41820 21172 646 82509 96115 14740 57458 13397 1141 35654 86730 60548 52492 30861 87105 13782 7638 85972 13629...

result:

ok ok