Codeforces 1120D (树形DP 或 最小生成树)
题意看这篇博客:https://blog.csdn.net/dreaming__ldx/article/details/88418543
思路看这篇:https://blog.csdn.net/corsica6/article/details/88115948
有个坑点,不能深搜去找具体方案,不然 test14 会 MLE(或许是本蒟蒻写丑了)
代码:
#include <bits/stdc++.h>
#define LL long long
#define pii pair<int, int>
using namespace std;
const int maxn = 200010;
int head[maxn], Next[maxn * 2], ver[maxn * 2], tot;
int a[maxn];
LL dp[maxn][2], sum[maxn], f[maxn];
bool v[maxn][2];
bool res[maxn];
vector<int> ans;
bool is_leaf[maxn];
void add(int x, int y) {
ver[++tot] = y;
Next[tot] = head[x];
head[x] = tot;
}
void dfs1(int x, int fa) {
int cnt = 0;
f[x] = fa;
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(y == fa) continue;
dfs1(y, x);
sum[x] += dp[y][0];
cnt++;
}
if(cnt == 0) {
dp[x][0] = a[x];
dp[x][1] = 0;
is_leaf[x] = 1;
return;
}
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(y == fa) continue;
dp[x][0] = min(dp[x][0], sum[x] - dp[y][0] + dp[y][1] + a[x]);
dp[x][1] = min(dp[x][1], sum[x] - dp[y][0] + dp[y][1]);
}
dp[x][0] = min(dp[x][0], sum[x]);
} void bfs() {
queue<pii> q;
q.push(make_pair(1, 0));
while(!q.empty()) {
pii tmp = q.front();
q.pop();
int x = tmp.first, flag = tmp.second;
if(v[x][flag]) continue;
v[x][flag] = 1;
if(flag == 0) {
int pos = -1, cnt = 0;
if(is_leaf[x]) {
res[x] = 1;
continue;
}
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(y == f[x]) continue;
if(dp[x][flag] == sum[x] - dp[y][0] + dp[y][1] + a[x]) {
if(v[y][1]) continue;
res[x] = 1;
q.push(make_pair(y, 1));
pos = y;
cnt++;
}
}
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(v[y][0]) continue;
if(y == f[x] || y == pos) continue;
q.push(make_pair(y, 0));
}
if(cnt > 1 || (sum[x] == dp[x][0] && pos != -1)) {
if(v[pos][0]) continue;
q.push(make_pair(pos, 0));
}
} else {
int pos = -1, cnt = 0;
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(y == f[x]) continue;
if(dp[x][flag] == sum[x] - dp[y][0] + dp[y][1]) {
if(v[y][1]) continue;
q.push(make_pair(y, 1));
pos = y;
cnt++;
}
}
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(v[y][0]) continue;
if(y == f[x] || y == pos) continue;
q.push(make_pair(y, 0));
}
if(cnt > 1) {
if(v[pos][0]) continue;
q.push(make_pair(pos, 0));
}
}
}
}
int main() {
int n, x, y;
scanf("%d", &n);
for (int i = 1; i <= n; i++)
scanf("%d", &a[i]);
for (int i = 1; i < n; i++) {
scanf("%d%d", &x, &y);
add(x, y);
add(y, x);
}
memset(dp, 0x3f, sizeof(dp));
dfs1(1, -1);
bfs();
for (int i = 1; i <= n; i++) {
if(res[i])
ans.push_back(i);
}
printf("%lld %d\n", dp[1][0], ans.size());
sort(ans.begin(), ans.end());
for (int i = 0; i < ans.size(); i++)
printf("%d ", ans[i]);
printf("\n");
}
最小生成树解法先留个坑在这。。。
补坑:
思路看这篇博客:https://www.cnblogs.com/river-flows-in-you/p/10596821.html
说一下我个人的理解:把每个叶子节点看成新图的顶点,对于原树中的每个顶点,我们可以计算出它影响哪些叶子节点,用差分的思想连边。只要求出了生成树就说明可以任意取,因为形成生成树之后,我们对每个点的赋值操作就可以类比在生成树上遍历的过程。
代码:
#include <bits/stdc++.h>
#define LL long long
#define INF 0x3f3f3f3f
using namespace std;
const int maxn = 200010;
int head[maxn], Next[maxn * 2], ver[maxn * 2], tot;
int sz[maxn], cnt, l[maxn], r[maxn], a[maxn], f[maxn];
bool v[maxn];
struct Edge{
int u, v, w, id;
bool operator < (const Edge& rhs) const {
return w < rhs.w;
}
};
Edge b[maxn];
void add(int x, int y) {
ver[++tot] = y;
Next[tot] = head[x];
head[x] = tot;
}
void dfs(int x, int fa) {
sz[x] = 1;
l[x] = INF, r[x] = -1;
for (int i = head[x]; i; i = Next[i]) {
int y = ver[i];
if(y == fa) continue;
dfs(y, x);
sz[x] += sz[y];
l[x] = min(l[x], l[y]);
r[x] = max(r[x], r[y]);
}
if(sz[x] == 1) {
l[x] = r[x] = ++cnt;
}
b[x] = (Edge){l[x], r[x] + 1, a[x], x};
}
int get(int x) {
if(x == f[x]) return x;
return f[x] = get(f[x]);
}
int main() {
int n, x, y;
scanf("%d", &n);
int sum = 0;
LL ans = 0;
for (int i = 1; i <= n; i++)
scanf("%d", &a[i]);
for (int i = 1; i < n; i++) {
scanf("%d%d", &x, &y);
add(x, y);
add(y, x);
}
dfs(1, -1);
sort(b + 1, b + 1 + n);
cnt++;
for (int i = 1; i <= cnt; i++) f[i] = i;
for(int L = 1, R; L <= n; L = R + 1) {
R = L;
while(b[L].w == b[R + 1].w && R < n) R++;
for (int i = L; i <= R; i++) {
x = get(b[i].u), y = get(b[i].v);
if(x != y) {
v[b[i].id] = 1;
sum++;
}
}
for (int i = L; i <= R; i++) {
x = get(b[i].u), y = get(b[i].v);
if(x != y) {
ans += b[i].w;
// printf("%lld %d\n", ans, b[i].w);
f[x] = y;
}
}
}
// printf("%lld %d\n", ans, sum);
cout << ans << " " << sum << endl;
for (int i = 1; i <= n; i++)
if(v[i]) printf("%d ", i);
}
Codeforces 1120D (树形DP 或 最小生成树)的更多相关文章
- Codeforces 1153D 树形DP
题意:有一个游戏,规则如下:每个点有一个标号,为max或min, max是指这个点的值是所有子节点中值最大的那一个,min同理.问如何给这颗树的叶子节点赋值,可以让这棵树的根节点值最大. 思路:很明显 ...
- Codeforces 1088E 树形dp+思维
比赛的时候看到题意没多想就放弃了.结果最后D也没做出来,还掉分了,所以还是题目做的太少,人太菜. 回到正题: 题意:一棵树,点带权值,然后求k个子连通块,使得k个连通块内所有的点权值相加作为分子除以k ...
- Codeforces 1179D 树形DP 斜率优化
题意:给你一颗树,你可以在树上添加一条边,问添加一条边之后的简单路径最多有多少条?简单路径是指路径中的点只没有重复. 思路:添加一条边之后,树变成了基环树.容易发现,以基环上的点为根的子树的点中的简单 ...
- CodeForces - 337D 树形dp
题意:一颗树上有且仅有一只恶魔,恶魔会污染距离它小于等于d的点,现在已经知道被污染的m个点,问恶魔在的可能结点的数量. 容易想到,要是一个点到(距离最远的两个点)的距离都小于等于d,那么这个点就有可能 ...
- CodeForces 219D 树形DP
D. Choosing Capital for Treeland time limit per test 3 seconds memory limit per test 256 megabytes i ...
- codeforces 337D 树形DP Book of Evil
原题直通车:codeforces 337D Book of Evil 题意:一棵n个结点的树上可能存在一个Evil,Evil危险范围为d,即当某个点与它的距离x<=d时,那么x是危险的. 现已知 ...
- Up and Down the Tree CodeForces - 1065F (树形dp)
链接 题目大意:给定$n$结点树, 假设当前在结点$v$, 有两种操作 $(1)$移动到$v$的子树内任意一个叶子上 $(2)$若$v$为叶子, 可以移动到距离$v$不超过$k$的祖先上 初始在结点$ ...
- codeforces 1053D 树形DP
题意:给一颗树,1为根节点,有两种节点,min或者max,min节点的值是它的子节点的值中最小的,max节点的值是它的子节点的值中最大的,若共有k个叶子,叶子的值依次为1~k. 问给每个叶子的值赋为几 ...
- Codeforces 735E 树形DP
题意:给你一棵树,你需要在这棵树上选择一些点染成黑色,要求染色之后树中任意节点到离它最近的黑色节点的距离不超过m,问满足这种条件的染色方案有多少种? 思路:设dp[x][i]为以x为根的子树中,离x点 ...
随机推荐
- 前端之JavaScript 02
一.函数 // 最基础的函数定义 function f1() { console.log('hello world!'); } f1(); // hello world! // 带参数的函数 func ...
- TCP, Scoket, HTTP(转)
1.TCP连接 要想明白Socket连接,先要明白TCP连接.手机能够使用联网功能是因为手机底层实现了TCP/IP协议,可以使手机终端通过无线网络建立TCP连接.TCP协议可以对上层网络提供接口,使上 ...
- 重温CLR(七 ) 属性和事件
无参属性 许多类型都定义了能被获取或更高的状态信息.这种状态信息一般作为类型的字段成员实现.例如一下类型包含两个字段: public sealed class Employee{ public str ...
- lvds配置
基于Altera FPGA的LVDS配置应用一例 在特权同学发表博文<Cyclone III的LVDS接口注意事项>后,不少网友发邮件询问LVDS具体应用的一些问题.这些网友,归根到底,估 ...
- Java各种集合容器的总结
Java容器指的是List,Set,Map这些类.由于翻译的问题,问到集合,Collection这些指的都是它们几个. List ArrayList 随机访问快 LinkedList 插入删除快 这个 ...
- unidac 执行Execute后取得受影响行数。
unidac 执行Execute后取得受影响行数. uniQuery2.SQL.Text := mmo2.Text; uniQuery2.Execute; mmo1.Lines.Add(Format( ...
- Ajax验证用户名
用Ajax验证用户名: 接口: get guestbook/index.php m : index a : verifyUserName username : 要验证的用户名 返回 { code : ...
- 蓝桥杯 算法训练 ALGO-50 数组查找及替换
算法训练 数组查找及替换 时间限制:1.0s 内存限制:512.0MB 问题描述 给定某整数数组和某一整数b.要求删除数组中可以被b整除的所有元素,同时将该数组各元素按从小到大排序.如果数组元 ...
- Fiddler2 模拟文件上传
最近遇到一个需求,需要上传音频文件, 服务端使用webService 通过spring3 进行文件上传.代码完成后使用 html 通过post 方式请求接口成功了,但不知道如何使用Fiddler2工具 ...
- codeforce 980B - Marlin(构造)
Marlin time limit per test 1 second memory limit per test 256 megabytes input standard input output ...