QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#600776#5418. Color the Treebruteforce_WA 129ms10752kbC++202.6kb2024-09-29 19:04:082024-09-29 19:04:09

Judging History

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

  • [2024-09-29 19:04:09]
  • 评测
  • 测评结果:WA
  • 用时:129ms
  • 内存:10752kb
  • [2024-09-29 19:04:08]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=1e6+7,inf=1e18,S=21;
vector<vector<int>> e,leaf,fa,mi,pos;
vector<int> a,dep,dfn,_2;
int tot;
int n;
int query(int l,int r)
{
	l++; r++;
	int len=r-l+1;
	int t=_2[len];
	return min(mi[l][t],mi[r-(1<<t)+1][t]);
}
bool cmp(int x,int y)
{
	return dfn[x]<dfn[y];
}
void dfs1(int u)
{
	dep[u]=dep[fa[u][0]]+1;
	leaf[dep[u]].push_back(u);
	dfn[u]=++tot;
	for(auto v:e[u])
	{
		if(v==fa[u][0]) continue;
		fa[v][0]=u;
		dfs1(v);
	}
}
int lca(int x,int y)
{
	if(dep[x]<dep[y])
		swap(x,y);
	for(int i=S-1; i>=0; i--)
	{
		if(dep[fa[x][0]]>=dep[y])
			x=fa[x][0];
	}
	if(x==y) return x;
	for(int i=S-1; i>=0; i--)
	{
		if(fa[x][0]!=fa[y][0])
		{
			x=fa[x][0];
			y=fa[y][0];
		}
	}
	return fa[x][0];
}
//vector<int> dp;
int dfs2(int u,int fa,int d)
{
	if(dep[u]==d)
	{
		return query(0,d-1);
	}
	int res=0;
	for(auto v:e[u])
	{
		if(v==fa) continue;
		res+=dfs2(v,u,d);
	}
	return min(res,query(d-dep[u],d-dep[fa]-1));
}
int solve(int id)
{
	sort(leaf[id].begin(),leaf[id].end(),cmp);
	int n=leaf[id].size();
	for(int i=0; i<n-1; i++)
	{
		leaf[id].push_back(lca(leaf[id][i],leaf[id][i+1]));
	}
	sort(leaf[id].begin(),leaf[id].end(),cmp);
	leaf[id].erase(unique(leaf[id].begin(),leaf[id].end()),leaf[id].end());
	n=leaf[id].size();
	for(int i=0; i<n-1; i++)
	{
		int l=lca(leaf[id][i],leaf[id][i+1]);
		e[leaf[id][i+1]].push_back(l);
		e[l].push_back(leaf[id][i+1]);
	}
	int res=dfs2(1,0,id);
	for(auto x:leaf[id])
		e[x].clear();
	return res;
}
void O_o()
{
	cin>>n;
	pos.assign(n+2,vector<int>(S,0));
	mi.assign(n+2,vector<int>(S,inf));
	_2.assign(n+2,0);
	e.assign(n+1,vector<int>());
	fa.assign(n+1,vector<int>(S,0));
	leaf.assign(n+1,vector<int>());
	a.assign(n+1,0);
	_2[0]=-1;
	for(int i=1; i<=n; i++)
	{
		cin>>a[i];
		mi[i][0]=a[i];
		pos[i][0]=i+1;
		_2[i]=_2[i>>1]+1;
	}
	for(int j=1; j<S; j++)
	{
		for(int i=1; i<=n; i++)
		{
			pos[i][j]=pos[pos[i][j-1]][j-1];
			mi[i][j]=min(mi[i][j-1],mi[pos[i][j-1]][j-1]);
		}
	}
	for(int i=1; i<n; i++)
	{
		int x,y;
		cin>>x>>y;
		e[x].push_back(y);
		e[y].push_back(x);
	}
	dep.assign(n+1,0);
	dfn.assign(n+1,0);
	tot=0;
	dfs1(1);
	for(int j=1; j<S; j++)
	{
		for(int i=1; i<=n; i++)
		{
			fa[i][j]=fa[fa[i][j-1]][j-1];
		}
	}
	int ans=0;
	e.assign(n+1,vector<int>());
	for(int i=1; i<=n; i++)
	{
		if(i!=1)
			leaf[i].push_back(1);
		ans+=solve(i);
	}
	cout<<ans<<"\n";
}
signed main()
{
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
	cout<<fixed<<setprecision(12);
	int T=1;
	cin>>T;
	while(T--)
	{
		O_o();
	}
}

詳細信息

Test #1:

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

input:

3
4
10 15 40 1
1 2
2 3
2 4
5
10 5 1 100 1000
1 2
2 3
2 4
4 5
4
1000 200 10 8
1 2
2 3
3 4

output:

35
17
1218

result:

ok 3 number(s): "35 17 1218"

Test #2:

score: 0
Accepted
time: 82ms
memory: 3592kb

input:

3000
54
43 44 11 49 17 14 7 30 35 12 34 14 15 8 29 47 30 31 39 17 26 23 26 45 34 50 49 13 35 18 29 15 13 44 47 5 22 20 19 46 30 22 26 13 47 46 43 27 48 48 13 14 30 44
1 2
1 3
2 4
3 5
4 6
2 7
4 8
1 9
3 10
1 11
8 12
2 13
9 14
1 15
1 16
15 17
15 18
7 19
1 20
19 21
13 22
10 23
17 24
9 25
9 26
24 27
8 28...

output:

180
168
222
230
156
240
225
126
100
81
155
73
154
127
149
124
228
230
132
187
153
170
78
282
195
286
191
211
119
197
211
233
88
252
239
233
173
180
195
121
109
148
180
175
226
210
182
97
199
59
56
31
115
204
203
172
139
208
53
140
189
170
173
137
233
94
163
273
80
350
156
133
146
159
240
269
137
222...

result:

ok 3000 numbers

Test #3:

score: 0
Accepted
time: 95ms
memory: 4512kb

input:

300
474
5 24 21 41 15 23 43 48 32 19 27 40 10 49 40 6 18 41 43 31 45 18 35 36 12 10 23 45 28 23 14 43 37 45 12 16 20 17 49 13 22 8 30 19 27 40 22 14 30 47 16 39 25 48 21 26 50 8 14 26 9 30 41 15 44 24 16 46 50 39 25 47 24 45 21 18 26 21 5 39 15 10 47 48 11 44 44 33 23 14 35 39 35 30 38 9 13 15 39 5 ...

output:

329
183
264
219
323
220
348
342
410
395
80
201
299
144
207
408
360
215
283
104
320
394
277
210
273
285
242
253
265
379
360
322
202
351
195
196
266
270
171
342
239
283
286
300
331
317
345
268
173
296
275
224
480
330
264
162
199
378
254
214
231
293
229
259
241
268
380
419
233
185
364
341
328
237
320
3...

result:

ok 300 numbers

Test #4:

score: -100
Wrong Answer
time: 129ms
memory: 10752kb

input:

30
4926
18 13 47 7 21 39 28 48 21 44 14 18 39 13 46 33 6 49 9 7 10 29 29 25 38 15 16 42 41 41 40 14 26 13 6 19 17 31 24 18 30 24 48 46 38 21 28 42 29 50 33 28 18 26 18 42 13 23 35 20 32 6 17 25 44 46 35 36 50 24 7 29 34 14 41 41 8 33 22 46 7 6 22 40 24 8 44 36 38 13 37 37 25 22 7 43 50 33 19 44 24 4...

output:

427
520
443
359
427
408
371
415
477
436
269
530
478
485
435
453
418
503
443
453
405
425
337
557
297
435
559
453
213
395

result:

wrong answer 9th numbers differ - expected: '482', found: '477'