CodeForces 618D Hamiltonian Spanning Tree

题意:要把所有的节点都访问一次,并且不能重复访问,有两种方式访问,一种是根据树上的路径

走和当前节点连接的下一个节点cost x, 或者可以不走树上边,直接跳到不与当前节点连接的节点,cost y

分析:

别被树吓着!

一定会走n-1条路,那么就是有一些走树上的边,有一些不走。

如果树上的路径cost更大(x >= y),那么尽可能的不走树上的路径,那么根据尝试可以找到规律

如果有一个节点是所有节点的父节点,也就是说这个节点的度为n-1,那么只会走一个x其他都是y

如果没有这个节点,一定可以全部走y

另一种情况如果(x < y),那么也就是说要尽可能的多走树上的边,我们知道一个节点只能访问一次,也就是说

一个节点最多只能连两条边出去,然后dfs搜索,找到最多可以走多少条,每个节点的度数如果不被剪完就可以继续连,

剩下的只能走y。

  1 #include <stdio.h>
  2 #include <string.h>
  3 #include <iostream>
  4 #include <queue>
  5 #include <vector>
  6 #include <algorithm>
  7 #include <stack>
  8 #include <set>
  9 #include <map>
 10 #include <math.h>
 11 #define pb push_back
 12 #define CLR(a) memset(a, 0, sizeof(a));
 13 #define MEM(a, b) memset(a, b, sizeof(a));
 14 #define fi first
 15 #define se second
 16
 17 using namespace std;
 18
 19 typedef long long ll;
 20
 21 const int MAXN = 200007;
 22 const int MAXV = 207;
 23 const int MAXE = 207;
 24 const int INF = 0x3f3f3f3f;
 25 ll x, y, n;
 26 struct Edge
 27 {
 28     int to, next;
 29     Edge () {}
 30     Edge(int to, int next) : to(to), next(next) {}
 31 }edge[MAXN << 1];
 32 int num;
 33 int head[MAXN];
 34 void Add(int from, int to)
 35 {
 36     edge[num] = Edge(to, head[from]);
 37     head[from] = num++;
 38 }
 39 int deg[MAXN];
 40 ll ans = 0;
 41 ll len = 0;
 42 int cnt = 0;
 43 bool dfs(int crt, int fa)
 44 {
 45     int rem = 2;
 46     for (int t = head[crt]; t != -1; t = edge[t].next)
 47     {
 48         Edge e = edge[t];
 49         int v = e.to;
 50         if (v == fa) continue;
 51         if (dfs(v, crt) && rem > 0)
 52         {
 53             len++; rem--;
 54         }
 55     }
 56     return rem > 0;
 57 }
 58
 59 int main()
 60 {
 61     //freopen("in.txt", "r", stdin);
 62     while (~scanf("%lld%lld%lld", &n, &x, &y))
 63     {
 64         MEM(head, -1);
 65         MEM(edge, -1);
 66         CLR(deg);
 67         num = 0;
 68         len = 0;
 69         for (int i = 0; i < n-1; i++)
 70         {
 71             int u, v;
 72             scanf("%d%d", &u, &v);
 73             Add(u, v);
 74             Add(v, u);
 75             deg[u]++;
 76             deg[v]++;
 77         }
 78         bool done = false;
 79         if (x >= y)
 80         {
 81             for (int i = 1; i <= n; i++)
 82             {
 83                 if (deg[i] == n-1)
 84                 {
 85                     ans = y*(n-2)+x;
 86                     printf("%lld\n", ans);
 87                     done = true;
 88                     break;
 89                 }
 90             }
 91             if (done) continue;
 92             ans = (n-1)*y;
 93             printf("%lld\n", ans);
 94             continue;
 95         }
 96         dfs(1, 0); ans = len*x + (n-1-len)*y;
 97         printf("%lld\n", ans);
 98     }
 99     return 0;
100 }
时间: 2024-11-13 06:48:21

CodeForces 618D Hamiltonian Spanning Tree的相关文章

Codeforces 618D Hamiltonian Spanning Tree(树的最小路径覆盖)

题意:给出一张完全图,所有的边的边权都是 y,现在给出图的一个生成树,将生成树上的边的边权改为 x,求一条距离最短的哈密顿路径. 先考虑x>=y的情况,那么应该尽量不走生成树上的边,如果生成树上有一个点的度数是n-1,那么必然需要走一条生成树上的边,此时答案为x+y*(n-2). 否则可以不走生成树上的边,则答案为y*(n-1). 再考虑x<y的情况,那么应该尽量走生成树上的边,由于树上没有环,于是我们每一次需要走树的一条路,然后需要从非生成树上的边跳到树的另一个点上去, 显然跳的越少越好,于

Codeforces 1218D Xor Spanning Tree FWT

根据题目描述可知是个特殊的仙人掌, 然后把环扣出来fwt算方案数就好了. #include<bits/stdc++.h> #define fi first #define se second #define mk make_pair #define PII pair<int, int> using namespace std; const int N = 1 << 17; const int mod = (int)1e9 + 7; const int mod2 = 99

HDU 4896 Minimal Spanning Tree(矩阵快速幂)

题意: 给你一幅这样子生成的图,求最小生成树的边权和. 思路:对于i >= 6的点连回去的5条边,打表知907^53 mod 2333333 = 1,所以x的循环节长度为54,所以9个点为一个循环,接下来的9个点连回去的边都是一样的.预处理出5个点的所有连通状态,总共只有52种,然后对于新增加一个点和前面点的连边状态可以处理出所有状态的转移.然后转移矩阵可以处理出来了,快速幂一下就可以了,对于普通的矩阵乘法是sigma( a(i, k) * b(k, j) ) (1<=k<=N), 现在

【HDU 4408】Minimum Spanning Tree(最小生成树计数)

Problem Description XXX is very interested in algorithm. After learning the Prim algorithm and Kruskal algorithm of minimum spanning tree, XXX finds that there might be multiple solutions. Given an undirected weighted graph with n (1<=n<=100) vertex

BNUOJ 26229 Red/Blue Spanning Tree

Red/Blue Spanning Tree Time Limit: 2000ms Memory Limit: 131072KB This problem will be judged on HDU. Original ID: 426364-bit integer IO format: %I64d      Java class name: Main Given an undirected, unweighted, connected graph, where each edge is colo

HDOJ 题目4408 Minimum Spanning Tree(Kruskal+Matrix_Tree)

Minimum Spanning Tree Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1408    Accepted Submission(s): 450 Problem Description XXX is very interested in algorithm. After learning the Prim algori

Codeforces 461B Appleman and Tree(木dp)

题目链接:Codeforces 461B Appleman and Tree 题目大意:一棵树,以0节点为根节点,给定每一个节点的父亲节点,以及每一个点的颜色(0表示白色,1表示黑色),切断这棵树的k条边,使得树变成k+1个联通分量.保证每一个联通分量有且仅有1个黑色节点.问有多少种切割方法. 解题思路:树形dp,dp[i][0]和dp[i][1]分别表示子树一下的切割方法中,i节点所在联通块不存在黑节点和已经存在一个黑节点的方案数. #include <cstdio> #include &l

codeforces 161D - Distance in Tree(树形dp)

题目大意: 求出树上距离为k的点对有多少个. 思路分析: dp[i][j] 表示 i 的子树中和 i 的距离为 j 的点数有多少个.注意dp[i] [0] 永远是1的. 然后在处理完一颗子树后,就把自身的dp 更新. 更新之前更新答案. 如果这颗子树到 i 有 x 个距离为j的.那么答案就要加上 dp[i] [ k-j-1] * x; #include <iostream> #include <cstdio> #include <cstring> #include &l

Lab - Modify Default Spanning Tree Behavior

Modify Default Spanning Tree Behavior Topology Objective observe what happens when the default spanning tree behavior is modified. Background Four switches have just been installed. The distribution layer switches are Catalyst 3560s, and the access l