Network

本文探讨了一种在树形网络中优化VOD(点播视频)服务质量的方法,目标是在确保每个客户端与VOD服务器间距离不超过特定阈值的前提下,最小化VOD系统副本的数量。通过在距离超过阈值的客户端节点放置副本,可以有效提升服务质量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 Network

 UVALive - 3902

Consider a tree network with n nodes where the internal nodes correspond to servers and the terminal nodes correspond to clients. The nodes are numbered from 1 to n. Among the servers, there is an original server S which provides VOD (Video On Demand) service. To ensure the quality of service for the clients, the distance from each client to the VOD server S should not exceed a certain value k. The distance from a node u to a node v in the tree is defined to be the number of edges on the path from u to v. If there is a nonempty subset C of clients such that the distance from each u in C to S is greater than k , 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) is k or less. Given a tree network, a server S which has VOD system, and a positive integer k, find the minimum number of replicas necessary so that each client is within distance k from 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. For k = 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 of T test 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 integer n (3 ≤ n ≤ 1, 000) which is the number of nodes of the tree network. The next line contains two integers s (1 ≤ s ≤ n) and k (k ≥ 1) where s is the VOD server and k is the distance value for ensuring the quality of service. In the following n − 1 lines, 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

先已s结点为根结点将所有距离d超过k的叶子结点找出来放到一个以d为下标的数组里,首先距离大的叶子结点如果在其某个最远的祖先处放置一个VOD,那样是最划算的,接着跑dfs将其他变为合法的叶子结点找出进行标记

 

#include<iostream>

#include<cstdio>

#include<cstring>

#include<cmath>

#include<algorithm>

#include<set>

#include<vector>

using namespace std;

vector<int> ve[1005];

int t,n,s,k,head[1005],tot,fa[1005],ans,vis[1005];

struct edge

{

int v,nxt;

}edg[2005];

inline void addedg(int u,int v)

{

edg[tot].v = v;

edg[tot].nxt = head[u];

head[u] = tot++;

}

void dfs(int u,int f,int d)

{

fa[u] = f;

int cnt = 0;

for(int i = head[u];i != -1;i = edg[i].nxt)

if(edg[i].v != f)

{

++cnt;

dfs(edg[i].v,u,d+1);

}

if(cnt == 0 && d > k)

ve[d].push_back(u);

}

void dfs1(int u,int f,int d)

{

int cnt = 0;

for(int i = head[u];i != -1;i = edg[i].nxt)

if(edg[i].v != f && d < k)

{

++cnt;

dfs1(edg[i].v,u,d+1);

}

if(cnt == 0 && d <= k)

vis[u] = 1;

}

int main()

{

scanf("%d",&t);

while(t--)

{

scanf("%d%d%d",&n,&s,&k);

memset(head,-1,sizeof(head));

memset(vis,0,sizeof(vis));

for(int i = 0;i <= n;++i)

ve[i].clear();

int u,v;

tot = 0;

for(int i = 1;i < n;++i)

{

scanf("%d%d",&u,&v);

addedg(u,v);

addedg(v,u);

}

dfs(s,s,0);

ans = 0;

for(int i = n;i >= 0;--i)

{

for(int j = 0;j < ve[i].size();++j)

{

u = ve[i][j];

if(!vis[u])

{

int cnt = k;

while(cnt--)

u = fa[u];

++ans;

dfs1(u,u,0);

}

}

}

printf("%d\n",ans);

}

return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值