QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#201440 | #7338. Education Nightmare | kjhhjki | WA | 653ms | 11540kb | C++20 | 1.9kb | 2023-10-05 14:22:41 | 2023-10-05 14:22:42 |
Judging History
answer
#pragma GCC optimize(2)
#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,cnt,dis,n,m,s,u,v,dep[MAXN],pre[MAXN];
bool hasS[MAXN],inS[MAXN];
void dfs(int u, int prev)
{
pre[u] = prev;
if(u == s) hasS[u] = 1;
ForE(i,u)
{
int v = e[i].to;
if(v == prev) continue;
dep[v] = dep[u] + 1;
dfs(v,u);
if(hasS[v]) hasS[u] = 1;
}
}
void dfs2(int u, int pre)
{
inS[u] = 1;
ForE(i,u)
{
int v = e[i].to;
if(v == pre) continue;
dfs2(v,u);
}
}
void dfs3(int u, int pre)
{
++cnt;
dis = max(dis,dep[u]);
ForE(i,u)
{
int v = e[i].to;
if(v == pre) continue;
dfs3(v,u);
}
}
void solve()
{
cin >> n >> s >> m; ans = 0;
tot = 0; fill(head,head+n+1,0);
fill(hasS,hasS+n+1,0); fill(dep,dep+n+1,0); fill(inS,inS+n+1,0);
For(i,2,n) cin >> u >> v, add_edge(u,v), add_edge(v,u);
dfs(m,0);
ForE(i,m)
if(hasS[e[i].to])
dfs2(e[i].to,m);
For(i,1,n) if(!inS[i]) ans = max(ans,dep[s]+dep[i]);
u = s;
while(u != m)
{
dis = cnt = 0;
ForE(i,u)
{
int v = e[i].to;
if(v != pre[u] && !hasS[v]) dfs3(v,u);
}
ans = max(ans,dep[s]+min(dis,cnt<<1));
u = pre[u];
}
cout << ans + mx << '\n';
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> T;
while(T--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5500kb
input:
1 4 2 3 1 2 1 3 1 4
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: -100
Wrong Answer
time: 653ms
memory: 11540kb
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...
output:
9 8 63 12 3 9 118 8 107 10 11 95 6 76 121 4 85 2 104 7 121 132 91 69 7 106 0 96 91 6 90 90 7 9 4 97 70 94 12 3 3 10 10 12 8 5 95 86 87 5 84 130 3 6 1 84 9 131 81 4 1 120 99 8 1 3 4 13 5 88 104 109 82 5 9 127 85 12 86 11 4 4 8 5 9 4 9 64 8 105 68 2 124 83 1 90 2 1 9 78 6 121 9 0 9 13 87 0 4 8 5 3 0 5...
result:
wrong answer 7th numbers differ - expected: '131', found: '118'