QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#184529 | #7103. Red Black Tree | liuzhenhao09# | AC ✓ | 889ms | 32880kb | C++20 | 1.7kb | 2023-09-20 20:41:33 | 2023-09-20 20:41:33 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
struct edge{
int to,nxt,w;
}e[200010];
int T,n,m,q,nE = 0;
int hd[200010];
int col[100010],dis[100010],val[100010],f[100010][20],dep[100010];
void add(int u,int v,int w){
e[++nE] = (edge){v,hd[u],w};
hd[u] = nE;
}
void dfs(int u,int fa){
dep[u] = dep[fa] + 1;
f[u][0] = fa;
for(int i = 1; i < 20; i++) f[u][i] = f[f[u][i - 1]][i - 1];
if(col[u]) val[u] = 0;
for(int i = hd[u]; i; i = e[i].nxt){
int v = e[i].to,w = e[i].w;
if(v == fa) continue;
dis[v] = dis[u] + w;
val[v] = val[u] + w;
dfs(v,u);
}
}
int LCA(int u,int v){
if(dep[u] < dep[v]) swap(u,v);
for(int i = 19; i >= 0; i--) if(dep[f[u][i]] >= dep[v]) u = f[u][i];
if(u == v) return u;
for(int i = 19; i >= 0; i--){
if(f[u][i] != f[v][i]){
u = f[u][i];
v = f[v][i];
}
}
return f[u][0];
}
bool cmp(int a,int b){
return val[a] > val[b];
}
signed main(){
scanf("%lld",&T);
while(T--){
scanf("%lld %lld %lld",&n,&m,&q);
nE = 0;
for(int i = 0; i <= n; i++) col[i] = 0,hd[i] = 0;
for(int i = 1,x; i <= m; i++){
scanf("%lld",&x);
col[x] = 1;
}
for(int i = 1,u,v,w; i < n; i++){
scanf("%lld %lld %lld",&u,&v,&w);
add(u,v,w),add(v,u,w);
}
dfs(1,0);
while(q--){
vector<int>vc;
int k;
scanf("%lld",&k);
for(int i = 1,x; i <= k; i++) scanf("%lld",&x),vc.push_back(x);
sort(vc.begin(),vc.end(),cmp);
vc.push_back(0);
int lca = vc[0],ans = val[vc[1]],mx = dis[vc[0]];
for(int i = 1; i < k; i++){
lca = LCA(lca,vc[i]);
mx = max(mx,dis[vc[i]]);
ans = min(ans,max(val[vc[i + 1]],mx - dis[lca]));
}
printf("%lld\n",ans);
}
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 7956kb
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: 889ms
memory: 32880kb
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