Network Saboteur
| Time Limit: 2000MS | Memory Limit: 65536K | |
| Total Submissions: 12256 | Accepted: 5912 |
Description
A university network is composed of N computers. System administrators gathered information on the traffic between nodes, and carefully divided the network into two subnetworks in order to minimize traffic between parts.
A disgruntled computer science student Vasya, after being expelled from the university, decided to have his revenge. He hacked into the university network and decided to reassign computers to maximize the traffic between two subnetworks.
Unfortunately, he found that calculating such worst subdivision is one of those problems he, being a student, failed to solve. So he asks you, a more successful CS student, to help him.
The traffic data are given in the form of matrix C, where Cij is the amount of data sent between ith and jth nodes (Cij = Cji, Cii = 0). The goal is to divide the network nodes into the two disjointed subsets A and B so as to maximize the sum ∑Cij (i∈A,j∈B).
A disgruntled computer science student Vasya, after being expelled from the university, decided to have his revenge. He hacked into the university network and decided to reassign computers to maximize the traffic between two subnetworks.
Unfortunately, he found that calculating such worst subdivision is one of those problems he, being a student, failed to solve. So he asks you, a more successful CS student, to help him.
The traffic data are given in the form of matrix C, where Cij is the amount of data sent between ith and jth nodes (Cij = Cji, Cii = 0). The goal is to divide the network nodes into the two disjointed subsets A and B so as to maximize the sum ∑Cij (i∈A,j∈B).
Input
The first line of input contains a number of nodes N (2 <= N <= 20). The following N lines, containing N space-separated integers each, represent the traffic matrix C (0 <= Cij <= 10000).
Output file must contain a single integer -- the maximum traffic between the subnetworks.
Output file must contain a single integer -- the maximum traffic between the subnetworks.
Output
Output must contain a single integer -- the maximum traffic between the subnetworks.
Sample Input
3 0 50 30 50 0 40 30 40 0
Sample Output
90
#include<iostream>
using namespace std;
int Map[22][22];
int vis[22];
int n,ans;
void dfs(int id,int data)
{
int sum=data;
vis[id]=1;
for(int i=1;i<=n;i++)
{
if(vis[i]==0)
sum+=Map[i][id];
else
sum-=Map[i][id];
}
ans=max(ans,sum);
if(sum<=data)
return;
for(int i=id+1;i<=n;i++)
{
dfs(i,sum);
vis[i]=0;
}
}
int main()
{
cin>>n;
int i,j;
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
cin>>Map[i][j];
dfs(1,0);
cout<<ans<<endl;
}
本文介绍了一个计算机科学问题:如何通过重新分配大学网络中的计算机来最大化两个子网络间的流量。问题来源于一名被开除的学生希望通过这种方式进行报复。文章提供了一段C++代码示例,展示了如何使用深度优先搜索算法来解决这一问题。
333

被折叠的 条评论
为什么被折叠?



