zoukankan      html  css  js  c++  java
  • POJ 2351 Network Saboteur

    Network Saboteur
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 14087   Accepted: 6893

    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).

    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

    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
    题意:
    将n个数分为两个集合,同一集合内没有距离,不同集合之间有距离,求分成
    两个集合的最大的距离。
    思路:
    这道题我们采用DFS的方法进行求解,我们先考虑最简单情况
    (也就是DFS递归最底层的东西或者说是出口),
    我们可以将多对多的问题转
    化成多个一对多的问题,用0,1区分两个集合,默认刚开始所有的数都在0
    集合中,然后不断向1集合中转移数据。最后求一个最大值,就是我们想
    要的结果.
    AC代码:
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #define N 30
    #define INF 0x3f3f3f3f
    using namespace std;
    int mp[N][N];
    bool vis[N];
    int max1;
    int n;
    void DFS(int s,int sum){
    vis[s]=true;//vis[]=true--在1集合中
    for(int i=1;i<=n;i++){
        if(!vis[i])//如果在不同的集合
          sum+=mp[s][i];
        else //在相同的集合
         sum-=mp[s][i];
    }
    max1=max(max1,sum);
    for(int i=s+1;i<=n;i++){//将0中的数据向1转移
        vis[i]=true;
        DFS(i,sum);
        vis[i]=false;//注意回复
    }
    }
    int main(){
    while(~scanf("%d",&n)){
        for(int i=1;i<=n;i++){
            for(int j=1;j<=n;j++){
                scanf("%d",&mp[i][j]);
            }
        }
        max1=-INF;
        DFS(0,0);
        printf("%d
    ",max1);
        }
    return 0;
    }
     
  • 相关阅读:
    win10 安装cmake报错: "Installation directory must be on a local drive"
    python量化笔记16之夏普比率计算公式
    python机器量化之十七:混淆矩阵(confusion_matrix)含义
    使用Aspose.word (Java) 填充word文档数据
    python笔记(十八)机器量化分析—数据采集、预处理与建模
    js 使FORM表单的所有元素不可编辑的示例代码 表
    Web前端面试题:写一个mul函数
    vue + electron 快速入门
    Java新特性stream流
    mycat中间件进行MySQL数据表的水平拆分
  • 原文地址:https://www.cnblogs.com/by-DSL/p/9073865.html
Copyright © 2011-2022 走看看