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
| #include <bits/stdc++.h> using namespace std;
#ifdef Fread char buf[1 << 21], *iS, *iT; #define gc() (iS == iT ? (iT = (iS = buf) + fread (buf, 1, 1 << 21, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++) #define getchar gc #endif
template <typename T> void r1(T &x) { x = 0; char c(getchar()); int f(1); for(; c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1; for(; '0' <= c && c <= '9';c = getchar()) x = (x * 10) + (c ^ 48); x *= f; }
template <typename T,typename... Args> inline void r1(T& t, Args&... args) { r1(t); r1(args...); }
const int maxn = 1e5 + 5; const int maxm = maxn << 1; const int inf = 1e9; struct Matrix { int a[2][2]; Matrix(void) { memset(a, 0, sizeof(a)); } int * operator [] (const int &x) { return a[x]; } void init() { memset(a, 0, sizeof(a)); a[0][1] = a[1][0] = -inf; } void Min() { for(int i = 0; i < 2; ++ i) a[i][0] = a[i][1] = -inf; } Matrix operator * (const Matrix &z) const { Matrix res; res.Min(); for(int i = 0; i < 2; ++ i) { for(int j = 0; j < 2; ++ j) for(int k = 0; k < 2; ++ k) res.a[i][j] = max(res.a[i][j], a[i][k] + z.a[k][j]); } return res; } };
vector<int> vc[maxn]; void add(int u,int v) { vc[u].emplace_back(v); }
int dfntot(0); int dfn[maxn], fdfn[maxn], top[maxn], fa[maxn], son[maxn], siz[maxn]; int bot[maxn]; void dfs(int p,int pre) { siz[p] = 1; for(int v : vc[p]) if(v != pre) { dfs(v, p); siz[p] += siz[v]; if(siz[v] > siz[son[p]]) son[p] = v; } }
void dfs1(int p,int pre,int topf) { dfn[p] = ++ dfntot; fdfn[dfntot] = p; top[p] = topf; fa[p] = pre; if(son[p]) dfs1(son[p], p, topf), bot[p] = bot[son[p]]; else bot[p] = p; for(int v : vc[p]) if(v != pre && v != son[p]) { dfs1(v, p, v); } } int f[maxn][2], g[maxn][2], a[maxn]; void dfs2(int p,int pre) { f[p][1] = a[p]; if(son[p]) dfs2(son[p], p), f[p][0] = max(f[son[p]][0], f[son[p]][1]), f[p][1] += f[son[p]][0]; for(int v : vc[p]) if(v != pre && v != son[p]) { dfs2(v, p); g[p][0] += max(f[v][0], f[v][1]); g[p][1] += f[v][0]; } f[p][0] += g[p][0]; f[p][1] += g[p][1]; }
Matrix t[maxn << 2]; struct Seg { #define ls (p << 1) #define rs (p << 1 | 1) #define mid ((l + r) >> 1)
void pushup(int p) { t[p] = t[rs] * t[ls]; }
void build(int p,int l,int r) { if(l == r) { int id = fdfn[l]; t[p].a[0][0] = g[id][0]; t[p].a[1][0] = g[id][0]; t[p].a[0][1] = g[id][1] + a[id]; t[p].a[1][1] = - inf; return ; } build(ls, l, mid), build(rs, mid + 1, r); pushup(p); }
void change(int p,int l,int r,int pos) { if(l == r) { int id = fdfn[pos]; t[p].a[0][0] = g[id][0]; t[p].a[1][0] = g[id][0]; t[p].a[0][1] = g[id][1] + a[id]; t[p].a[1][1] = - inf; return ; } if(pos <= mid) change(ls, l, mid, pos); else change(rs, mid + 1, r, pos); pushup(p); }
Matrix Ask(int p,int l,int r,int ll,int rr) { if(ll <= l && r <= rr) return t[p]; Matrix res; res.init(); if(mid < rr) res = res * Ask(rs, mid + 1, r, ll, rr); if(ll <= mid) res = res * Ask(ls, l, mid, ll, rr); return res; }
#undef ls #undef rs #undef mid }T;
int n, m;
void Solve(int u) { while(top[u] != 1) { Matrix res = T.Ask(1, 1, n, dfn[top[u]], dfn[bot[u]]); g[fa[top[u]]][0] -= max(res.a[0][0], res.a[0][1]); g[fa[top[u]]][1] -= res.a[0][0]; T.change(1, 1, n, dfn[u]); res = T.Ask(1, 1, n, dfn[top[u]], dfn[bot[u]]); g[fa[top[u]]][0] += max(res.a[0][0], res.a[0][1]); g[fa[top[u]]][1] += res.a[0][0];
u = fa[top[u]];
} T.change(1, 1, n, dfn[u]); }
signed main() {
int i, j; r1(n, m); for(i = 1; i <= n; ++ i) r1(a[i]); for(i = 1; i < n; ++ i) { int u, v; r1(u, v), add(u, v), add(v, u); } dfs(1, 0); dfs1(1, 0, 1); dfs2(1, 0);
T.build(1, 1, n); for(i = 1; i <= m; ++ i) { int x, y; r1(x, y), a[x] = y; Solve(x); Matrix res = T.Ask(1, 1, n, dfn[1], dfn[bot[1]]); printf("%d\n", max(res.a[0][0], res.a[0][1])); } return 0; }
|