CF 1029E Tree with Small Distances 樹形DP or 貪心
題意:
給你一顆樹,問你要使1號節點到所有節點的距離不超過2,最少新增多少邊?
題解:
顯然新增的邊肯定連1好。
利用樹形DP。
我們設dp[i][j]為i號節點到1的距離為j,並且i號節點的子樹都滿足要求的最少邊數。
這樣dp[n][2]即可,
dp[i][1] = (i == 1 || par == 1 ? 0 : 1)
但是dp[i][2]有兩種情況,一種是i節點經過父親再到1的距離為2, 一種是經過子節點再到1的距離為2。
這兩種情況的DP方程不同,我們把dp[i][2]拆成兩種狀態,dp[i][2]表示經過父親再到1,dp[i][3]表示經過子節點再到1。
dp[i][2] = min(dp[v][1], dp[v][3])
dp[i][3] = dp[i][2] + max( min(dp[i][1] - dp[i][3]), 0)
初始狀態,對於葉子節點i:
dp[i][1] = dp[i][1] = (i == 1 || par == 1 ? 0 : 1)
dp[i][2] = 0.
dp[i][3] = INF
程式碼:
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>
#include <bitset>
#include <map>
#include <vector>
#include <stack>
#include <set>
#include <cmath>
#ifdef LOCAL
#define debug(x) cout<<#x<<" = "<<(x)<<endl;
#else
#define debug(x) 1;
#endif
#define chmax(x,y) x=max(x,y)
#define chmin(x,y) x=min(x,y)
#define lson id<<1,l,mid
#define rson id<<1|1,mid+1,r
#define lowbit(x) x&-x
#define mp make_pair
#define pb push_back
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, int> pii;
const ll MOD = 1e9 + 7;
const double eps = 1e-10;
const int INF = 0x3f3f3f3f;
const ll INFLL = 0x3f3f3f3f3f3f3f3fll;
const int MAXN = 2e5 + 5;
int d[MAXN][4];
vector<int> G[MAXN];
void dfs (int now, int par) {
d[now][1] = (now == 1 || par == 1 ? 0 : 1);
int minn = INF;
for(int i : G[now]) {
if(i == par) continue;
dfs(i, now);
d[now][1] += min(d[i][1], d[i][2]);
d[now][2] += min(d[i][1], d[i][3]);
minn = min(d[i][1] - d[i][3], minn);
}
d[now][3] = d[now][2] + max(minn, 0);
}
int main() {
#ifdef LOCAL
freopen ("input.txt", "r", stdin);
#endif
int n;
cin >> n;
for (int i = 2; i <= n; i++) {
int x, y;
scanf ("%d %d", &x, &y);
G[x].pb (y);
G[y].pb (x);
}
dfs(1, 0);
int ans = 0;
for(int i : G[1]) ans += d[i][1];
printf("%d\n", ans);
return 0;
}
相關文章
- CF1039D You Are Given a Tree (樹形 dp + 貪心 + 根號分治)
- hdu4313 貪心並查集 || 樹形dp並查集
- CF 1975 D Paint the Tree(*1700) 貪心AI
- D52 樹的直徑+貪心 CF911F Tree DestructionStruct
- POJ 2486 Apple Tree(樹形dp)APP
- 樹形DP
- 樹形DP!
- 樹上染色(樹形dp)
- Codeforces 461B. Appleman and Tree[樹形DP 方案數]APP
- [筆記]樹形dp筆記
- 樹形DP二三知識
- URAL 1018 Binary Apple Tree(樹形dp入門題)APP
- Codeforces 459E Pashmak and Graph:dp + 貪心
- 一種型別的樹貪心型別
- CF448C Painting Fence(遞迴+貪心)AI遞迴
- LeetCode 55. 跳躍遊戲 ( 回溯 dp 貪心LeetCode遊戲
- LayUI—tree樹形結構的使用UI
- 貪心
- Codeforces 571B Minimization:dp + 貪心【前後相消】
- CF940E Cashback 線段樹優化DP優化
- php tree類的使用(樹形結構)PHP
- CCF之網路延時(樹形dp)
- POJ 3107 Godfather(樹形dp)Go
- HDU 5326 Work (基礎樹形dp)
- hdu 4123 樹形DP+RMQMQ
- Educational Codeforces Round 167 (Rated for Div. 2) D(dp,貪心)
- POJ3107Godfather[樹形DP 樹的重心]Go
- 反悔貪心
- Supermarket(貪心)
- 8 個最好的 jQuery 樹形 Tree 外掛jQuery
- 28款jQuery Tree 樹形結構外掛jQuery
- 【動態規劃】樹形DP完全詳解!動態規劃
- 【樹形dp】poj 1947 Rebuilding RoadsRebuild
- 列舉子集+預處理最佳化dp+貪心視角轉化成可做dp
- HDU 5135 Little Zu Chongzhi's Triangles(狀壓dp或者貪心)
- ZROJ#398. 【18提高7】隨機遊走(期望dp 樹形dp)隨機
- 8.13(優先佇列貪心維護+打表找規律+對頂堆優先佇列+DFS減枝+貪心dp)佇列
- poj2486Apple Tree[樹形揹包!!!]APP