QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#281619#7103. Red Black TreezhouzizheAC ✓400ms34952kbC++142.4kb2023-12-10 14:22:572023-12-10 14:22:58

Judging History

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

  • [2023-12-10 14:22:58]
  • 评测
  • 测评结果:AC
  • 用时:400ms
  • 内存:34952kb
  • [2023-12-10 14:22:57]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

int n,m,q,T;
int col[100005];
vector<pair<int,int>> E[100005];
int st[19][200005],dfn[100005],pos[100005],idfn[100005],dcnt,scnt;
long long dep[100005],ans[100005];
int Q[200005],_2[200005];

class FASTIO{
	public:
		long long read(){
			char c;long long x=0,f=1;
			do{c=getchar();if(c=='-')f=-1;}while(c<'0' || c>'9');
			while(c>='0' && c<='9'){x=(x<<3)+(x<<1)+c-'0';c=getchar();}
			return x*f;
		}
		void write(long long x){
			if(x<0)putchar('-'),x=-x;
			if(x>=10)write(x/10);
			putchar(x%10+'0');
		}
		FASTIO &operator >> (int &x){x=read(); return *this;}
		FASTIO &operator << (int x){write(x);return *this;}
		FASTIO &operator >> (long long &x){x=read(); return *this;}
		FASTIO &operator << (long long x){write(x);return *this;}
		FASTIO &operator >> (char* c){scanf("%s",c);return *this;}
		FASTIO &operator << (char* c){printf("%s",c);return *this;}
		FASTIO &operator >> (char &c){c=getchar();return *this;}
		FASTIO &operator << (char c){putchar(c);return *this;}
}FIO;

void dfs(int x,int f){
	dfn[x]=++dcnt;
	idfn[dcnt]=x;
	st[0][pos[x]=++scnt]=dfn[x];
	for(auto it:E[x]){
		if(it.first==f)continue;
		dep[it.first]=dep[x]+it.second;
		if(col[it.first])ans[it.first]=0;
		else ans[it.first]=it.second+ans[x];
		dfs(it.first,x);
		st[0][++scnt]=dfn[x];
	}
}
void init(){
	for(int i=1;i<=18;++i){
		for(int j=1;j+(1<<(i-1))<=scnt;++j)
			st[i][j]=min(st[i-1][j],st[i-1][j+(1<<(i-1))]);
	}
}

int lca(int x,int y){
	x=pos[x],y=pos[y];if(x>y)swap(x,y);
	int l=_2[y-x+1];
	return idfn[min(st[l][x],st[l][y-(1<<l)+1])];
}

int cmp(int x,int y){
	return ans[x]>ans[y];
}

void solve(){
	FIO>>n>>m>>q;
	for(int i=1;i<=n;++i)col[i]=0,E[i].clear();
	for(int i=1,ui;i<=m;++i)FIO>>ui,col[ui]=1;
	for(int i=1,ui,vi,wi;i<n;++i)FIO>>ui>>vi>>wi,E[ui].push_back({vi,wi}),E[vi].push_back({ui,wi});
	dcnt=scnt=0;dfs(1,0);init();
	while(q--){
		int qi,l;FIO>>qi;
		for(int i=0;i<qi;++i)FIO>>Q[i];
		sort(Q,Q+qi,cmp);
		long long ANS=ans[Q[0]],sum=0;l=Q[0];
		for(int i=0;i<qi;++i){
			l=lca(Q[i],l);
			sum=max(sum,dep[Q[i]]);
			long long ANS1=sum-dep[l];
			long long ANS2=(i+1==qi)?0:ans[Q[i+1]];
			ANS=min(ANS,max(ANS1,ANS2));
		}
		FIO<<ANS<<'\n';
	}
}


int main(){
//	freopen("1.in","r",stdin);
//	freopen("1.out","w",stdout);
	for(int i=2;i<=200000;++i)_2[i]=_2[i>>1]+1;
	scanf("%d",&T);
	while(T--)solve();
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
12 2 4
1 9
1 2 1
2 3 4
3 4 3
3 5 2
2 6 2
6 7 1
6 8 2
2 9 5
9 10 2
9 11 3
1 12 10
3 3 7 8
4 4 5 7 8
4 7 8 10 11
3 4 5 12
3 2 3
1 2
1 2 1
1 3 1
1 1
2 1 2
3 1 2 3

output:

4
5
3
8
0
0
0

result:

ok 7 lines

Test #2:

score: 0
Accepted
time: 400ms
memory: 34952kb

input:

522
26 1 3
1
1 4 276455
18 6 49344056
18 25 58172365
19 9 12014251
2 1 15079181
17 1 50011746
8 9 2413085
23 24 23767115
22 2 26151339
26 21 50183935
17 14 16892041
9 26 53389093
1 20 62299200
24 18 56114328
11 2 50160143
6 26 14430542
16 7 32574577
3 16 59227555
3 15 8795685
4 12 5801074
5 20 57457...

output:

148616264
148616264
0
319801028
319801028
255904892
317070839
1265145897
1265145897
1072765445
667742619
455103436
285643094
285643094
285643094
317919339
0
785245841
691421476
605409472
479058444
371688030
303203698
493383271
919185207
910180170
919185207
121535083
181713164
181713164
181713164
181...

result:

ok 577632 lines

Extra Test:

score: 0
Extra Test Passed