zoukankan      html  css  js  c++  java
  • poj 2531 -- Network Saboteur

    Network Saboteur
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 9183   Accepted: 4313

    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

    原题链接:Network Saboteur

    思路:枚举集合的个数,算出最大流量。DFS.说是减枝题。不知道怎么减。跑了141ms,改了一下子。跑了94ms。

    141ms code:
     1 /*======================================================================
     2  *           Author :   kevin
     3  *         Filename :   NetworkSaboteur.cpp
     4  *       Creat time :   2014-08-05 16:11
     5  *      Description :
     6 ========================================================================*/
     7 #include <iostream>
     8 #include <algorithm>
     9 #include <cstdio>
    10 #include <cstring>
    11 #include <queue>
    12 #include <cmath>
    13 #define clr(a,b) memset(a,b,sizeof(a))
    14 #define M 25
    15 using namespace std;
    16 int s[M][M];
    17 int n,vis[M],ans;
    18 void DFS(int id,int sum)
    19 {
    20     for(int i = id; i < n; i++){
    21         vis[i] = 1;
    22         int temp = sum;
    23         for(int j = 1; j <= n; j++){
    24             if(!vis[j]){
    25                 temp += s[i][j];
    26             }
    27             else{
    28                 temp -= s[i][j];
    29             }
    30         }
    31         if(ans < temp){
    32             ans = temp;
    33         }
    34         DFS(i+1,temp);
    35         vis[i] = 0;
    36     }
    37 }
    38 int main(int argc,char *argv[])
    39 {
    40     while(scanf("%d",&n)!=EOF){
    41         clr(s,0);
    42         clr(vis,0);
    43         for(int i = 1; i <= n; i++){
    44             for(int j = 1; j <= n; j++){
    45                 scanf("%d",&s[i][j]);
    46             }
    47         }
    48         ans = 0;
    49         DFS(1,0);
    50         printf("%d
    ",ans);
    51     }
    52     return 0;
    53 }
    View Code
    94ms code:
     1 /*======================================================================
     2  *           Author :   kevin
     3  *         Filename :   NetworkSaboteur.cpp
     4  *       Creat time :   2014-08-05 16:11
     5  *      Description :
     6 ========================================================================*/
     7 #include <iostream>
     8 #include <algorithm>
     9 #include <cstdio>
    10 #include <cstring>
    11 #include <queue>
    12 #include <cmath>
    13 #define clr(a,b) memset(a,b,sizeof(a))
    14 #define M 25
    15 using namespace std;
    16 int s[M][M];
    17 int n,vis[M],ans;
    18 void DFS(int id,int sum,int first)
    19 {
    20     for(int i = id; i <= n; i++){
    21         vis[i] = 1;
    22         int temp = sum;
    23         for(int j = 1; j <= n; j++){
    24             if(!vis[j]){
    25                 temp += s[i][j];
    26             }
    27             else{
    28                 temp -= s[i][j];
    29             }
    30         }
    31         if(ans < temp){
    32             ans = temp;
    33         }
    34         if(i+1 <= n)
    35             DFS(i+1,temp,0);
    36         vis[i] = 0;
    37         if(first) break;
    38     }
    39 }
    40 int main(int argc,char *argv[])
    41 {
    42     while(scanf("%d",&n)!=EOF){
    43         clr(s,0);
    44         clr(vis,0);
    45         for(int i = 1; i <= n; i++){
    46             for(int j = 1; j <= n; j++){
    47                 scanf("%d",&s[i][j]);
    48             }
    49         }
    50         ans = 0;
    51         DFS(1,0,1);
    52         printf("%d
    ",ans);
    53     }
    54     return 0;
    55 }
    View Code
  • 相关阅读:
    vue.js报错:Module build failed: Error: No parser and no file path given, couldn't infer a parser.
    安装node
    java四大特性理解(封装继承多态抽象)
    在成功道路上,你要百败百战
    职场观察:高薪需要什么?
    jBPM4工作流应用开发指南
    WebService技术简介
    如何获得Android设备名称(ADB命令详细介绍)
    how-to-fix-fs-re-evaluating-native-module-sources-is-not-supported-graceful
    QQ文件没有读取权限,60017导致QQ无法登陆的终极解决办法
  • 原文地址:https://www.cnblogs.com/ubuntu-kevin/p/3892910.html
Copyright © 2011-2022 走看看