QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#201284 | #7338. Education Nightmare | kjhhjki | ML | 1ms | 7764kb | C++20 | 1.6kb | 2023-10-05 13:31:02 | 2023-10-05 13:31:02 |
Judging History
answer
#include <bits/stdc++.h>
#define MAXN 200005
#define For(I,A,B) for(int I = (A), endi = (B); I <= endi; ++I)
#define foR(I,A,B) for(int I = (A), endi = (B); I >= endi; --I)
#define ForE(I,A) for(int I = head[A]; I; I = e[I].nxt)
using namespace std;
typedef long long _ll;
typedef unsigned int ui;
struct Edge { int to,nxt; } e[MAXN<<1];
int head[MAXN],tot;
void add_edge(int x,int y) { e[++tot] = (Edge){y,head[x]}; head[x] = tot; }
int T,mx,ans,n,m,s,u,v,dep[MAXN],sz[MAXN];
bool hasS[MAXN];
void dfs(int u, int pre, int flag)
{
sz[u] = 1;
if(u == s) flag = 1;
hasS[u] = flag;
ForE(i,u)
{
int v = e[i].to;
if(v == pre) continue;
dep[v] = dep[u] + 1;
dfs(v,u,flag);
if(hasS[v]) hasS[u] = 1;
sz[u] += sz[v];
}
}
void dfs2(int u, int pre)
{
hasS[u] = 1;
ForE(i,u)
{
int v = e[i].to;
if(v == pre) continue;
dfs2(v,u);
}
}
void solve()
{
cin >> n >> s >> m; mx = ans = 0;
tot = 0; fill(head,head+n+1,0);
fill(hasS,hasS+n+1,0); fill(sz,sz+n+1,0); fill(dep,dep+n+1,0);
For(i,1,n) cin >> u >> v, add_edge(u,v), add_edge(v,u);
dfs(m,0,0);
if(s != m)
{
ForE(i,m)
if(hasS[e[i].to])
{
dfs2(e[i].to,m);
ans += sz[e[i].to]<<1;
}
ans -= dep[s]+2;
}
For(i,1,n)
if(!hasS[i])
mx = max(mx,dep[i]);
cout << ans + mx << '\n';
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> T;
while(T--) solve();
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 7764kb
input:
1 4 2 3 1 2 1 3 1 4
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: -100
Memory Limit Exceeded
input:
14966 15 13 8 7 14 7 10 5 3 1 3 15 3 1 13 9 5 7 2 6 13 10 11 13 8 5 10 5 12 14 4 16 14 9 16 11 14 9 8 15 14 15 13 10 6 11 3 2 9 5 6 7 10 6 6 8 1 5 15 4 10 2 11 12 100 49 58 67 43 55 34 84 42 3 74 84 54 20 6 86 83 88 51 2 99 4 78 91 64 14 59 82 38 91 44 24 12 12 2 39 19 43 46 5 80 41 35 80 97 79 8 47...