1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
| #include <bits/stdc++.h>
#define x first #define y second #define y1 Y1 #define y2 Y2 #define mp make_pair #define pb push_back
using namespace std;
typedef long long LL; typedef pair <int, int> pii;
template <typename T> inline int Chkmax (T &a, T b) { return a < b ? a = b, 1 : 0; } template <typename T> inline int Chkmin (T &a, T b) { return a > b ? a = b, 1 : 0; } template <typename T> inline T read () { T sum = 0, fl = 1; char ch = getchar(); for (; !isdigit(ch); ch = getchar()) if (ch == '-') fl = -1; for (; isdigit(ch); ch = getchar()) sum = (sum << 3) + (sum << 1) + ch - '0'; return sum * fl; }
inline void proc_status () { ifstream t ("/proc/self/status"); cerr << string (istreambuf_iterator <char> (t), istreambuf_iterator <char> ()) << endl; }
const int Maxn = 1000000 + 100; const int inf = 0x3f3f3f3f;
int N, Q; int e, Begin[Maxn], To[Maxn << 1], Next[Maxn << 1]; int fa[Maxn], dfn[Maxn], dfs_clock, son[Maxn], top[Maxn], size[Maxn], dep[Maxn];
inline void add_edge (int x, int y) { To[++e] = y; Next[e] = Begin[x]; Begin[x] = e; }
inline void dfs_init (int x) { dep[x] = dep[fa[x]] + 1, size[x] = 1;
for (int i = Begin[x]; i; i = Next[i]) { int y = To[i]; if (y == fa[x]) continue; fa[y] = x; dfs_init (y); if (size[y] > size[son[x]]) son[x] = y; size[x] += size[y]; } }
inline void dfs_init (int x, int now) { dfn[x] = ++dfs_clock, top[x] = now; if (son[x]) dfs_init (son[x], now);
for (int i = Begin[x]; i; i = Next[i]) { int y = To[i]; if (y == fa[x] || y == son[x]) continue;
dfs_init (y, y); } }
inline int get_lca (int x, int y) { while (top[x] != top[y]) { if (dep[top[x]] < dep[top[y]]) swap(x, y); x = fa[top[x]]; } if (dep[x] < dep[y]) swap(x, y); return y; }
int K, A[Maxn];
namespace VTREE { int e, Begin[Maxn], To[Maxn << 1], Next[Maxn << 1], W[Maxn << 1]; int Stack[Maxn], top; int Key[Maxn];
inline void add_edge (int x, int y, int z) { To[++e] = y; Next[e] = Begin[x]; Begin[x] = e; W[e] = z; }
inline int cmp_by_dfn (int x, int y) { return dfn[x] < dfn[y]; }
inline void build () { for (int i = 1; i <= K; ++i) Key[A[i]] = 1; sort(A + 1, A + K + 1, cmp_by_dfn); for (int i = K; i > 1; --i) A[++K] = get_lca (A[i], A[i - 1]); A[++K] = 1; sort(A + 1, A + K + 1, cmp_by_dfn); K = unique (A + 1, A + K + 1) - A - 1;
for (int i = 1; i <= K; ++i) { while (top && dfn[Stack[top]] + size[Stack[top]] - 1 < dfn[A[i]]) --top; if (top) add_edge (Stack[top], A[i], dep[A[i]] - dep[Stack[top]]); Stack[++top] = A[i]; } }
LL Dp[Maxn], f[Maxn], g[Maxn];
inline void get_dp1 (int x) { Dp[x] = f[x] = g[x] = 0; if (Key[x]) ++g[x];
for (int i = Begin[x]; i; i = Next[i]) { int y = To[i];
get_dp1 (y);
g[x] += g[y]; Dp[x] += Dp[y]; }
for (int i = Begin[x]; i; i = Next[i]) { int y = To[i]; LL now = f[y] + g[y] * W[i]; f[x] += now; Dp[x] += (g[x] - g[y]) * now; } }
LL ans1, ans2;
inline void get_dp2 (int x) { f[x] = inf, g[x] = -inf;
LL Max = -inf, Sec_Max = -inf, Min = inf, Sec_Min = inf;
if (Key[x]) Min = Max = 0;
for (int i = Begin[x]; i; i = Next[i]) { int y = To[i];
get_dp2 (y);
f[y] += W[i], g[y] += W[i];
if (f[y] <= Min) Sec_Min = Min, Min = f[y]; else if (f[y] <= Sec_Min) Sec_Min = f[y];
if (g[y] >= Max) Sec_Max = Max, Max = g[y]; else if (g[y] >= Sec_Max) Sec_Max = g[y]; }
f[x] = Min, g[x] = Max; Chkmin (ans1, Min + Sec_Min); Chkmax (ans2, Max + Sec_Max); }
inline void solve () { get_dp1 (1); printf("%lld ", Dp[1]); ans1 = 0x3f3f3f3f3, ans2 = -1; get_dp2 (1); printf("%lld %lld\n", ans1, ans2); }
inline void init () { for (int i = 1; i <= K; ++i) Begin[A[i]] = Key[A[i]] = 0; e = top = 0; } }
inline void Solve () { dfs_init (1); dfs_init (1, 1);
Q = read<int>(); while (Q--) { K = read<int>(); for (int i = 1; i <= K; ++i) A[i] = read<int>(); VTREE :: build (); VTREE :: solve (); VTREE :: init (); } }
inline void Input () { N = read<int>(); for (int i = 1; i < N; ++i) { int x = read<int>(), y = read<int>(); add_edge (x, y); add_edge (y, x); } }
int main() {
#ifndef ONLINE_JUDGE freopen("A.in", "r", stdin); freopen("A.out", "w", stdout); #endif
Input (); Solve ();
return 0; }
|