https://www.luogu.org/problemnew/show/P2495

Dp 方程很显然

设 Dp[u] 表示——使 u 不与其子树中任意一个关键点联通的最小代价

设 w[a, b] 表示 a 与 b 之间的边的权值。

  • 若 son[i] 不是关键点,Dp[u] = Dp[u] + min{Dp[son[i]],w[u][son[i]]}
  • 若 son[i] 是关键点,Dp[u] = Dp[u] + w[u][son[i]]

但这样复杂度很显然是不对的,所以我们考虑虚树

什么,你还不会虚树?那就去跟 zzq 学吧 https://www.cnblogs.com/zzqsblog/p/5560645.html

我们发现 k 的总和与 n 同级,所以用虚树优化这个 Dp,建出虚树,在虚树上 Dp 即可

#include <bits/stdc++.h>
#define X first
#define Y second
#define mp make_pair
using namespace std; typedef long long ll;
const int N = 250000 + 5, LG2 = 18; vector < pair <int, int> > G[N], G2[N];
int pre[N][LG2 + 1], dep[N], mx[N][LG2 + 1], id[N], dfn;
int n, m, k, h[N], sta[N], len, MX;
ll f[N];
bool book[N]; void init(int u, int fa) {
pre[u][0] = fa; dep[u] = dep[fa] + 1; id[u] = ++dfn;
for(int i = 1; i <= LG2; i++) {
pre[u][i] = pre[pre[u][i - 1]][i - 1];
mx[u][i] = min(mx[u][i - 1], mx[pre[u][i - 1]][i - 1]);
}
for(vector < pair <int, int> > :: iterator it = G[u].begin(); it != G[u].end(); it++) {
int v = it -> X; if(v != fa) mx[v][0] = it -> Y, init(v, u);
}
} int LCA(int x, int y) {
MX = INT_MAX;
if(dep[x] > dep[y]) swap(x, y);
for(int i = LG2; i >= 0; i--)
if(dep[pre[y][i]] >= dep[x])
MX = min(MX, mx[y][i]), y = pre[y][i];
if(x == y) return x;
for(int i = LG2; i >= 0; i--)
if(pre[x][i] != pre[y][i]) {
MX = min(MX, min(mx[x][i], mx[y][i]));
x = pre[x][i], y = pre[y][i];
}
return pre[x][0];
} bool cmp(int x, int y) {return id[x] < id[y];} void DP(int u) {
f[u] = 0;
for(vector < pair <int, int> > :: iterator it = G2[u].begin(); it != G2[u].end(); it++) {
int v = it -> X; DP(v);
if(book[v]) f[u] += it -> Y;
else f[u] += min(f[v], (ll)it -> Y);
}
} int main() {
cin >> n;
for(int i = 1; i < n; i++) {
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
G[a].push_back( mp(b, c) );
G[b].push_back( mp(a, c) );
}
init(1, 0); cin >> m;
while(m--) {
scanf("%d", &k);
for(int i = 1; i <= k; i++) {
scanf("%d", &h[i]);
book[h[i]] = 1;
}
sort(h + 1, h + k + 1, cmp);
sta[len = 1] = 1; G2[1].clear();
for(int i = 1; i <= k; i++) {
if(h[i] == 1) continue;
int lca = LCA(h[i], sta[len]);
if(lca != sta[len]) {
while(id[lca] < id[sta[len - 1]]) {
LCA(sta[len - 1], sta[len]);
G2[sta[len - 1]].push_back( mp(sta[len], MX) );
len--;
}
if(id[lca] > id[sta[len - 1]]) {
G2[lca].clear();
LCA(lca, sta[len]);
G2[lca].push_back( mp(sta[len], MX) );
sta[len] = lca;
} else LCA(lca, sta[len]), G2[lca].push_back( mp(sta[len], MX) ), len--;
}
G2[h[i]].clear(); sta[++len] = h[i];
}
for(int i = 1; i < len; i++) LCA(sta[i], sta[i + 1]), G2[sta[i]].push_back( mp(sta[i + 1], MX) );
DP(1); printf("%lld\n", f[1]);
for(int i = 1; i <= k; i++) book[h[i]] = 0;
}
return 0;
}

luoguP2495 [SDOI2011]消耗战的更多相关文章

  1. [luoguP2495] [SDOI2011]消耗战(DP + 虚树)

    传送门 明显虚树. 别的题解里都是这样说的. 先不考虑虚树,假设只有一组询问,该如何dp? f[u]表示把子树u中所有的有资源的节点都切掉的最优解 如果节点u需要切掉了话,$f[u]=val[u]$ ...

  2. BZOJ 2286: [Sdoi2011]消耗战

    2286: [Sdoi2011消耗战 Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 2082  Solved: 736[Submit][Status] ...

  3. bzoj 2286: [Sdoi2011]消耗战 虚树+树dp

    2286: [Sdoi2011]消耗战 Time Limit: 20 Sec  Memory Limit: 512 MB[Submit][Status][Discuss] Description 在一 ...

  4. bzoj千题计划254:bzoj2286: [Sdoi2011]消耗战

    http://www.lydsy.com/JudgeOnline/problem.php?id=2286 虚树上树形DP #include<cmath> #include<cstdi ...

  5. 【LG2495】[SDOI2011]消耗战

    [LG2495][SDOI2011]消耗战 题面 洛谷 题解 参考博客 题意 给你\(n\)个点的一棵树 \(m\)个询问,每个询问给出\(k\)个点 求将这\(k\)个点与\(1\)号点断掉的最小代 ...

  6. AC日记——[SDOI2011]消耗战 洛谷 P2495

    [SDOI2011]消耗战 思路: 建虚树走树形dp: 代码: #include <bits/stdc++.h> using namespace std; #define INF 1e17 ...

  7. [BZOJ2286][SDOI2011]消耗战(虚树DP)

    2286: [Sdoi2011]消耗战 Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 4998  Solved: 1867[Submit][Statu ...

  8. BZOJ2286 [Sdoi2011]消耗战 【虚树 + 树形Dp】

    2286: [Sdoi2011]消耗战 Time Limit: 20 Sec  Memory Limit: 512 MB Submit: 4261  Solved: 1552 [Submit][Sta ...

  9. 【BZOJ2286】[Sdoi2011]消耗战 虚树

    [BZOJ2286][Sdoi2011]消耗战 Description 在一场战争中,战场由n个岛屿和n-1个桥梁组成,保证每两个岛屿间有且仅有一条路径可达.现在,我军已经侦查到敌军的总部在编号为1的 ...

随机推荐

  1. 2014.8.8 CAD系统连接

    CDA数据库连接生产库.研发库.临时库对应3个连接名 cad = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = backupserver)(POR ...

  2. 04.CSS的继承性和层叠性

    CSS有两大特性:  继承性和层叠性 继承性 面向对象语言都会存在继承的概念 , 在面向对象语言中, 继承的特点:  继承了父类的属性和方法.  那么 css  就是在设置属性的 ,  不会牵扯到方法 ...

  3. leetcode524

    public class Solution { public string FindLongestWord(string s, IList<string> d) { string long ...

  4. MSDE2000

    安装MSDE2000的时候,遇到的两个问题 sqlserver 小版本 SQL安装问题.系统说:为了安全,要求使用SA密码,请使用SAPWD开关提供同一密码

  5. beijing

    #include<stdio.h> #include<string.h> #include<stdlib.h> #include<graphics.h> ...

  6. fcntl详细说明

    功能描述:根据文件描述词来操作文件的特性. #include <unistd.h>#include <fcntl.h> int fcntl(int fd, int cmd);  ...

  7. Leetcode:Divide Two Integers分析和实现

    题目要求我们用一个32位整数整除另外一个整数,但是不允许我们使用除法,乘法和取模运算. 有趣的问题,下面说一下我的思路: 首先,先给出两个正整数除法运算的过程.假设a为被除数,而b为除数.在计算机中无 ...

  8. linux 软链接 硬链接

    查看文件sun.txt   加上参数i 是显示节点 inode [root@bogon test]# ls -li sun.txt 10006225 -rw-r--r--. 1 root root 0 ...

  9. c语言实战 逆序一个三位数

    题目:给定一个正的三位整数,比如123,输出321,但如果是700,输出必须是7不能是007 思路是怎么样的呢? 假设这个正三位数是m,它的百分位是c,十分位是b,个位是a,那么就存在下面的等式. m ...

  10. vue.js的生命周期 及其created和mounted的部分

    网上很多人有所总结,转载自: https://segmentfault.com/a/1190000008570622   关于created和mounted的部分,也可以参考: https://blo ...