Consider a tree network withnnodes where the internal nodes correspond to servers and the terminal nodes correspond to clients. The nodes are numbered from 1 ton. Among the servers, there is an original serverSwhich provides VOD (Video On Demand) service. To ensure the quality of service for the clients, the distance from each client to the VOD serverSshould not exceed a certain valuek. The distance from a nodeuto a nodevin the tree is defined to be the number of edges on the path fromutov. If there is a nonempty subsetCof clients such that the distance from eachuinCtoSis greater thank, then replicas of the VOD system have to be placed in some servers so that the distance from each client to the nearest VOD server (the original VOD system or its replica) iskor less.
Given a tree network, a serverSwhich has VOD system, and a positive integerk, find the minimum number of replicas necessary so that each client is within distancekfrom the nearest server which has the original VOD system or its replica.
For example, consider the following tree network.

In the above tree, the set of clients is {1, 6, 7, 8, 9, 10, 11, 13}, the set of servers is {2, 3, 4, 5, 12, 14}, and the original VOD server is located at node 12.
Fork= 2, the quality of service is not guaranteed with one VOD server at node 12 because the clients in {6, 7, 8, 9, 10} are away from VOD server at distance>k. Therefore, we need one or more replicas. When one replica is placed at node 4, the distance from each client to the nearest server of {12, 4} is less than or equal to 2. The minimum number of the needed replicas is one for this example.
Input
Your program is to read the input from standard input. The input consists ofTtest cases. The number of test cases (T) is given
in the first line of the input. The first line of each test case contains an integern(3n
1,
000)which is the number of nodes of the tree network. The next line contains two integerss(1
s
n)andk(k
1)wheresis
the VOD server andkis the distance value for ensuring the quality of service. In the followingn - 1lines, each line contains a pair of nodes which represent an edge of the tree network.
Output
Your program is to write to standard output. Print exactly one line for each test case. The line should contain an integer that is the minimum number of the needed replicas.
Sample Input
2 14 12 2 1 2 2 3 3 4 4 5 5 6 7 5 8 5 4 9 10 3 2 12 12 14 13 14 14 11 14 3 4 1 2 2 3 3 4 4 5 5 6 7 5 8 5 4 9 10 3 2 12 12 14 13 14 14 11
Sample Output
1 0
题意:给定一个图,求最少放置几个服务器使得全部覆盖。
思路:贪心,从叶子节点,找他的k级节点去放置是最佳情况。
代码:
#include <stdio.h>
#include <string.h>
#include <vector>
using namespace std;
const int N = 1005;
int T, n, s, k, vis[N], f[N], vi[N];
vector<int> g[N], node[N];
void dfs(int s, int d) {
if (d <= k)
vis[s] = 1;
vi[s] = 1;
if(g[s].size() == 1) node[d].push_back(s);
for (int i = 0; i < g[s].size(); i ++) {
if (vi[g[s][i]] == 0) {
f[g[s][i]] = s;
dfs(g[s][i], d + 1);
}
}
}
void dfs2(int s, int d) {
if (d > k) return;
vis[s] = 1;
vi[s] = 1;
for (int i = 0; i < g[s].size(); i ++) {
if (vi[g[s][i]] == 0)
dfs2(g[s][i], d + 1);
}
}
void init() {
memset(f, 0, sizeof(f));
memset(vi, 0, sizeof(vi));
memset(vis, 0, sizeof(vis));
memset(g, 0, sizeof(g));
memset(node, 0, sizeof(node));
scanf("%d%d%d", &n, &s, &k);
int a, b;
for (int i = 0; i < n - 1; i ++) {
scanf("%d%d", &a, &b);
g[a].push_back(b);
g[b].push_back(a);
}
dfs(s, 0);
}
int solve() {
int ans = 0;
for (int d = n - 1; d > k; d --) {
int u, v;
for (int i = 0; i < node[d].size(); i ++) {
u = v = node[d][i];
if (vis[u]) continue;
for (int j = 0; j < k; j ++) v = f[v];
memset(vi, 0, sizeof(vi));
dfs2(v, 0);
ans ++;
}
}
return ans;
}
int main() {
scanf("%d", &T);
while (T--) {
init();
printf("%d\n", solve());
}
return 0;
}