QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#80055#4809. Maximum RangeCrysflyWA 56ms47076kbC++174.3kb2023-02-21 21:03:322023-02-21 21:03:35

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-21 21:03:35]
  • 评测
  • 测评结果:WA
  • 用时:56ms
  • 内存:47076kb
  • [2023-02-21 21:03:32]
  • 提交

answer

// what is matter? never mind.
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rep(i,a,b) for(int i=(a);i>=(b);--i)
//#define int long long
using namespace std;
inline int read()
{
	char c=getchar();int x=0;bool f=0;
	for(;!isdigit(c);c=getchar())f^=!(c^45);
	for(;isdigit(c);c=getchar())x=(x<<1)+(x<<3)+(c^48);
	if(f)x=-x;return x;
}

#define fi first
#define se second
#define pb push_back
#define mkp make_pair
typedef pair<int,int>pii;
typedef vector<int>vi;

#define maxn 600005
#define inf 0x3f3f3f3f

namespace flow{

int n,s,t,maxflow;
int dep[maxn],cur[maxn];
int tot=1,head[maxn];
struct edge{
	int to,nxt,w;
}e[maxn<<1];
void adde(int u,int v,int w){
	e[++tot]=(edge){v,head[u],w};
	head[u]=tot;
}
void add(int u,int v,int w){
//	cout<<"add "<<u<<" "<<v<<" "<<w<<"\n";
	adde(u,v,w);
	adde(v,u,0);
}
bool bfs(int s,int t)
{
	queue<int>q;
	For(i,0,n)cur[i]=head[i],dep[i]=inf;
	dep[s]=0;q.push(s);
	while(!q.empty())
	{
		int u=q.front();q.pop();
		for(int i=head[u];i;i=e[i].nxt)
		{
			int v=e[i].to;
			if(dep[v]==inf&&e[i].w){
				dep[v]=dep[u]+1;
				if(v==t)return 1;
				q.push(v);
			}
		}
	}return dep[t]<inf;
}
int dfs(int u,int t,int minn)
{
	if(!minn||u==t)return minn;
	int res=0;
	for(int i=cur[u];i;i=e[i].nxt)
	{
		int v=e[i].to;
		cur[u]=i;
		if(dep[v]!=dep[u]+1)continue;
		int flow=dfs(v,t,min(minn,e[i].w));
		if(!flow)continue;
		res+=flow,minn-=flow;
		e[i].w-=flow,e[i^1].w+=flow;
		if(!minn)break;
	}
	if(!res) dep[u]=0;
	return res;
}
inline int dinic(int s,int t)
{
	int maxflow=0,flow=0;
	while(bfs(s,t))while(flow=dfs(s,t,inf))maxflow+=flow;
	return maxflow;
}
inline void init(int N,int S,int T){
	n=N,s=S,t=T,tot=1,maxflow=0;
	For(i,0,n)head[i]=0;
}

}
using flow::add;

int n,m;

struct edge{
    int to,nxt,w;
}e[maxn<<1];
int head[maxn],tot=1;
inline void adde(int u,int v,int w){
    e[++tot]=(edge){v,head[u],w};
    head[u]=tot;
}

int dfn[maxn],low[maxn],bel[maxn],idx,scc,stk[maxn],tp;
int mn[maxn],mx[maxn];
bool cut[maxn<<1];
vi g[maxn];
void tar(int u,int lste){
    dfn[u]=low[u]=++idx,stk[++tp]=u;
    for(int i=head[u];i;i=e[i].nxt){
        int v=e[i].to;
        if(i==(lste^1))continue;
        if(!dfn[v])tar(v,i),low[u]=min(low[u],low[v]),cut[i]=cut[i^1]=low[v]>dfn[u];
        else low[u]=min(low[u],dfn[v]);
    }
    if(dfn[u]==low[u]){
        int v; ++scc;
        do v=stk[tp--],bel[v]=scc,g[scc].pb(v);while(v^u);
    }
}

int id;
vi buc[maxn];
void solve()
{
	cout<<mx[id]-mn[id]<<"\n";
	int u1,v1,u2,v2,id1=-1,id2;
	For(u,1,n)
        for(int i=head[u];i;i=e[i].nxt)
            if(bel[u]==id && bel[e[i].to]==id){
                if(id1==-1 && e[i].w==mn[id]) u1=u,v1=e[i].to,id1=i;
                else if(e[i].w==mx[id]) u2=u,v2=e[i].to,id2=i;
            }
    int s=0,t=n+1; flow::init(t,s,t);
	add(s,u1,1),add(s,v1,1);
	add(u2,t,1),add(v2,t,1);
	int fir=flow::tot;
	For(u,1,n)
        for(int i=head[u];i;i=e[i].nxt)
        	if(bel[u]==id && bel[e[i].to]==id && i!=id1 && i!=id2 && (i^1)!=id1 && (i^1)!=id2 && u<e[i].to)
        		flow::adde(u,e[i].to,1),flow::adde(e[i].to,u,1);
    int fl=flow::dinic(s,t);
 //   cout<<"flow "<<fl<<"\n";
    assert(fl==2);
    vi o1,o2;
    For(i,fir+1,flow::tot)
    	if(!flow::e[i].w) buc[flow::e[i^1].to].pb(flow::e[i].to);//cout<<flow::e[i^1].to<<" "<<flow::e[i].to<<'\n';
    int x=u1;
    o1.pb(x);
    while(x!=u2 && x!=v2){
    	assert(buc[x].size());
    	int y=buc[x].back(); buc[x].pop_back(); 
    	o1.pb(x=y);
	}
	x=v1;
	o2.pb(x);
	while(x!=(u2^v2^o1.back())){
		assert(buc[x].size());
		int y=buc[x].back(); buc[x].pop_back();
		o2.pb(x=y); 
	}
	while(o2.size()) o1.pb(o2.back()),o2.pop_back();
	For(i,1,n) assert(!buc[i].size());
	cout<<o1.size()<<"\n"; for(auto x:o1) cout<<x<<" "; exit(0);
}

signed main()
{
	n=read(),m=read();
    For(i,1,m){
        int u=read(),v=read(),w=read();
        adde(u,v,w),adde(v,u,w);
    }
    For(i,1,n)if(!dfn[i])tar(i,0);
    For(i,1,scc)mn[i]=inf,mx[i]=-inf;
    For(u,1,n)
        for(int i=head[u];i;i=e[i].nxt)
            if(bel[u]==bel[e[i].to]){
                mn[bel[u]]=min(mn[bel[u]],e[i].w);
                mx[bel[u]]=max(mx[bel[u]],e[i].w);
            }
    id=1;
    For(i,1,scc)if(mx[i]-mn[i]>mx[id]-mn[id])id=i;
    solve();
    
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 4ms
memory: 31516kb

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
1 5 4 3 

result:

ok ok

Test #2:

score: 0
Accepted
time: 32ms
memory: 40704kb

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
31171 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 

result:

ok ok

Test #3:

score: 0
Accepted
time: 33ms
memory: 40676kb

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
33264 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 

result:

ok ok

Test #4:

score: 0
Accepted
time: 29ms
memory: 40764kb

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
11395 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 

result:

ok ok

Test #5:

score: 0
Accepted
time: 29ms
memory: 40768kb

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
75593 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 

result:

ok ok

Test #6:

score: 0
Accepted
time: 22ms
memory: 40824kb

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

result:

ok ok

Test #7:

score: 0
Accepted
time: 30ms
memory: 40704kb

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
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 61378 4358 24485 97465 31...

result:

ok ok

Test #8:

score: 0
Accepted
time: 31ms
memory: 40716kb

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
2351 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 

result:

ok ok

Test #9:

score: 0
Accepted
time: 33ms
memory: 40748kb

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

result:

ok ok

Test #10:

score: 0
Accepted
time: 23ms
memory: 40688kb

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

result:

ok ok

Test #11:

score: 0
Accepted
time: 41ms
memory: 40700kb

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
24802 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 

result:

ok ok

Test #12:

score: 0
Accepted
time: 56ms
memory: 47076kb

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
63158 51881 42774 48849 71472 29552 39597 52407 31857 25312 37326 57254 3377 71783 41451 34441 8349 58329 3626 11609 495 44309 71553 70385 2150 28021 1903 55380 62028 31984 59971 38713 70681 76837 42048 66939 37696 68154 55066 31704 45753 65908 37661 50942 57019 6753 77783 5408 2562...

result:

ok ok

Test #13:

score: 0
Accepted
time: 37ms
memory: 42860kb

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
1060 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 ...

result:

ok ok

Test #14:

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

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
50802 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...

result:

ok ok

Test #15:

score: 0
Accepted
time: 46ms
memory: 43468kb

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
60358 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 831...

result:

ok ok

Test #16:

score: 0
Accepted
time: 11ms
memory: 31608kb

input:

3 3
1 2 233
2 3 233
3 1 233

output:

0
3
1 2 3 

result:

ok ok

Test #17:

score: 0
Accepted
time: 50ms
memory: 45040kb

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
46968
1 68898 47146 52700 23481 57612 33701 3479 55565 33686 47907 79523 62364 4510 6284 18953 49230 59038 60900 53913 78235 32565 44271 14053 21344 62131 18913 7426 28932 19236 8039 68739 32674 24637 14459 28071 31239 63883 13594 31712 6801 23538 49720 37723 14491 18745 14229 68089 61796 63900 43...

result:

ok ok

Test #18:

score: 0
Accepted
time: 38ms
memory: 42508kb

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
4
24900 58244 36103 73213 

result:

ok ok

Test #19:

score: 0
Accepted
time: 29ms
memory: 43536kb

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
4948 6460 38466 15671 

result:

ok ok

Test #20:

score: -100
Wrong Answer
time: 39ms
memory: 41464kb

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
2
41311 85938 

result:

wrong answer Cycle contains repeated edge 41311-85938