QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#692481#5439. Meet in the MiddlewjwweiweiWA 3826ms14288kbC++142.5kb2024-10-31 14:35:352024-10-31 14:35:36

Judging History

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

  • [2024-10-31 14:35:36]
  • 评测
  • 测评结果:WA
  • 用时:3826ms
  • 内存:14288kb
  • [2024-10-31 14:35:35]
  • 提交

answer

#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);i++)
using namespace std;
typedef long long ll;
bool Mst;
const int N=1e5+5;
int n,q;
int T;
struct Tree{
	int head[N],to[N<<1],nxt[N<<1],tot,fa[N],dep[N];
	int son[N],siz[N],top[N];
	int fl[N<<1];ll dis[N];
	inline void clear(){
		for(int i=0;i<=n;i++){
			head[i]=dis[i]=dep[i]=son[i]=siz[i]=top[i]=0;
		}
		tot=0;
	}
	inline void add(int u,int v,int w){nxt[++tot]=head[u],to[tot]=v,fl[tot]=w,head[u]=tot;}
	void dfs(int u,int fat){
		dep[u]=dep[fat]+1;
		fa[u]=fat;
		siz[u]=1;
		for(int i=head[u];i;i=nxt[i]){
			int v=to[i];
			if(v==fat)continue;
			dis[v]=dis[u]+fl[i];
			dfs(v,u);
			siz[u]+=siz[v];
			if(siz[son[u]]<siz[v])son[u]=v;
		}
	}
	void dfs2(int u,int topu){
		top[u]=topu;
		if(!son[u])return ;
		dfs2(son[u],top[u]);
		for(int i=head[u];i;i=nxt[i]){
			int v=to[i];
			if(v==fa[u]||v==son[u])continue;
			dfs2(v,v);
		}
	}
	inline int lca(int u,int v){
		while(top[u]^top[v]){
			if(dep[top[u]]>dep[top[v]])u=fa[top[u]];
			else v=fa[top[v]];
		}
		return dep[u]<dep[v]?u:v;
	}
	inline ll gdis(int u,int v){return dis[u]+dis[v]-2ll*dis[lca(u,v)];}
}T1,T2;
mt19937 rnd(time(0));
set<int>rea;
int gt[N],cnt;
bool Med;
int main(){
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
		cin>>n;cin>>q;
		T1.clear(),T2.clear();
		int u,v,w;
		for(int i=1;i<n;i++)cin>>u>>v>>w,T1.add(u,v,w),T1.add(v,u,w);
		for(int i=1;i<n;i++)cin>>u>>v>>w,T2.add(u,v,w),T2.add(v,u,w);
		T1.dfs(1,0),T2.dfs(1,0);T1.dfs2(1,1),T2.dfs2(1,1);
		
		if(n<=3000&&q<=3000){
			for(int i=1;i<=q;i++){
				cin>>u>>v;
				ll ans=-1;
//				int id=0;
				for(int j=1;j<=n;j++){
					ll now=T1.gdis(u,j)+T2.gdis(v,j);
					ans=max(ans,now);
//					if(ans==now)id=j;
				}
				cout<<ans<<"\n";
//				rea.insert(id);
//				if(rea.size()>4)cerr<<rea.size()<<"\n";
			}
			
		}
		else{
			rea.clear();
			int t=17000;
			for(int i=1;i<=t;i++){
				int u=rnd()%n+1,v=rnd()%n+1;
				ll ans=-1;
				int id=1;
				for(int j=1;j<=n;j++){
					ll now=T1.gdis(u,j)+T2.gdis(v,j);
					ans=max(ans,now);
					if(ans==now)id=j;
				}
				rea.insert(id);
				int now=rea.size();
				if(now==4)break;
//				if(pp>10&&now==2)break;
			}
			cnt=0;
			for(auto v:rea)gt[++cnt]=v;
			for(int i=1;i<=q;i++){
				cin>>u>>v;
				ll ans=-1;
				for(int k=1;k<=cnt;k++){
					int j=gt[k];
					ll now=T1.gdis(u,j)+T2.gdis(v,j);
					ans=max(ans,now);
				}
				cout<<ans<<"\n";
			}
		}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 14028kb

input:

3 4
1 2 1
2 3 2
1 2 2
2 3 1
1 1
1 2
2 1
2 2

output:

6
4
5
3

result:

ok 4 number(s): "6 4 5 3"

Test #2:

score: 0
Accepted
time: 2ms
memory: 13912kb

input:

2 1
1 2 1
1 2 1
1 1

output:

2

result:

ok 1 number(s): "2"

Test #3:

score: 0
Accepted
time: 2ms
memory: 13960kb

input:

2 1
1 2 1
1 2 1
1 2

output:

1

result:

ok 1 number(s): "1"

Test #4:

score: 0
Accepted
time: 15ms
memory: 14164kb

input:

10000 50000
8101 5996 108427744
5996 7605 870838849
5996 5599 603303696
8101 3006 339377417
8101 6463 442516687
6463 5560 109174079
5560 4063 127596224
3006 1682 947915262
5996 1986 130416311
6463 5455 279771516
6463 2634 516688796
4063 3034 217886863
7605 5092 742375061
5599 2266 193804402
5092 140...

output:

647838384844
626539793176
514273941704
637066393138
472546379596
645842915960
641537859258
573604504956
644081575470
803875451466
674370549986
734764046916
744862815441
763778393516
553499885160
526743824759
610373719514
689550247042
549161302822
726811438160
653134244120
666761991962
701575393972
6...

result:

ok 50000 numbers

Test #5:

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

input:

10000 50000
5314 8843 137901358
5314 4153 459134340
5314 8667 933926892
4153 6504 330487798
4153 8880 750362377
4153 5990 874275912
4153 546 563436331
5990 6216 902348875
8843 3101 669215553
6216 8138 732343176
8667 8675 581114294
6504 7416 127778711
546 4239 282695908
6504 9455 549237168
5314 8340 ...

output:

464564968641
331633000004
565299667784
484694871646
570451097836
417492802442
372302349684
638725688107
386235986078
355738655551
462027769535
558485994764
524714144289
450157947013
432701214095
494566741391
529031758638
637683369382
415646847933
344894296260
390294136162
527685175763
575151290175
3...

result:

ok 50000 numbers

Test #6:

score: 0
Accepted
time: 18ms
memory: 14288kb

input:

10000 50000
2808 2490 757309564
2808 9601 312271047
2808 4046 119325897
2808 4894 466822371
4894 1507 498399554
2490 5982 84088145
9601 1251 149019541
2808 6681 416590999
2808 6583 357757899
1251 3192 889947539
6583 9762 350572496
6681 22 597479070
5982 8744 263208242
8744 5281 49894126
1507 8806 30...

output:

1501072697023
2058806276380
2017086500812
2044250452467
1543567245539
1695101693278
1765462307870
2576423082091
2302805133490
2090282734929
2375783476943
1954788661090
2056530503168
2453153202726
1978028047409
2106220371212
2210163378358
2015714406862
1555876274751
2122832986951
2102262624814
169085...

result:

ok 50000 numbers

Test #7:

score: 0
Accepted
time: 16ms
memory: 13000kb

input:

10000 50000
4064 7188 81750473
7188 8466 310631946
8466 2276 154981798
2276 7347 162965456
7188 464 806245243
464 2250 849189978
8466 641 734602751
8466 9246 225800419
4064 5267 191524437
2276 5292 192776095
2276 9036 414997994
9246 5470 362146726
2250 473 98496385
4064 7726 700294189
473 9503 42824...

output:

3589143478793
5241855728342
3397106617685
3432843859461
4544481241003
3649934075137
3020107625030
3297847713344
3894730366667
3030559097282
4824131552194
4821302024170
4471510161493
3291683748595
4954639576578
2961243269520
3659899432127
3421183608349
5262802614761
4408705330639
5203984107670
500158...

result:

ok 50000 numbers

Test #8:

score: 0
Accepted
time: 104ms
memory: 12252kb

input:

10000 50000
8676 4714 406191383
8676 5040 603960140
5040 9715 635348098
4714 9483 594267326
9483 5451 409058229
8676 8913 909259106
9715 1399 320185961
9715 4857 180234031
4714 8888 585099487
5040 1244 645347755
5451 7736 479423492
9483 1038 272038574
1399 3970 638817231
8888 3314 55726955
8888 2295...

output:

447424387353
491327570749
614052040822
384218910068
429859933145
356174725430
609432604118
465420084327
472632020898
382647454960
343751681021
441874503695
463199624732
610943875286
563031986601
566780763247
346991783125
601234775562
619765985074
357316826763
495874578271
526431260851
331681020073
4...

result:

ok 50000 numbers

Test #9:

score: -100
Wrong Answer
time: 3826ms
memory: 12232kb

input:

10000 50000
30 8765 730632293
8765 4245 897288335
30 4974 965971295
4974 9464 585377707
9464 744 157095406
744 6387 969328235
744 235 905769171
744 912 989443452
744 1341 273641834
744 9933 802952118
4974 8348 248881694
8765 9127 36706230
912 6136 324362270
4974 8517 411159721
8348 1941 672019024
94...

output:

260285187513
334448828465
448073136303
349497881882
360969017248
402078622370
390257279014
308648100196
320994952264
289449337583
393159064851
453034865550
283828471834
446349617896
380894281657
408838602752
363824724502
420964873388
362606539223
391080537186
304570333981
245848347318
310973758007
3...

result:

wrong answer 9852nd numbers differ - expected: '444155428461', found: '444144026982'