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
| #include <iostream> #include <set> #include <queue> #include <algorithm> #define maxn 100010 #define ll long long using namespace std;
int n, m, a[maxn];
struct Edge { int to, next, w; } e[maxn * 2]; int head[maxn], c1; inline void add_edge(int u, int v, int w) { e[c1].to = v; e[c1].w = w; e[c1].next = head[u]; head[u] = c1++; }
int f[maxn], g[maxn]; void dfs(int u, int fa) { f[u] = a[u]; for (int i = head[u]; ~i; i = e[i].next) { int v = e[i].to, w = e[i].w; if (v == fa) continue; dfs(v, u); f[u] = min(f[u], f[v] + w); } }
void Dfs(int u, int fa) { for (int i = head[u]; ~i; i = e[i].next) { int v = e[i].to, w = e[i].w; if (v == fa) continue; g[v] = min(f[v], g[u] + w); Dfs(v, u); } }
inline void solve_1() { int x, y; cin >> x >> y; a[x] = y; }
inline void solve_2() { int x, y; cin >> x >> y; --x; e[x * 2].w = e[x * 2 ^ 1].w = y; }
inline void solve_3() { dfs(1, 0); g[1] = f[1]; Dfs(1, 0); int ans = 0; for (int i = 1; i <= n; ++i) ans ^= g[i]; cout << ans << "\n"; }
int main() { fill(head, head + maxn, -1); ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
cin >> n >> m; for (int i = 1; i <= n; ++i) cin >> a[i]; for (int i = 1; i < n; ++i) { int x, y, z; cin >> x >> y >> z; add_edge(x, y, z); add_edge(y, x, z); } for (int i = 1; i <= m; ++i) { int opt; cin >> opt; switch (opt) { case 1: solve_1(); break; case 2: solve_2(); break; case 3: solve_3(); break; } } return 0; }
|