zoukankan      html  css  js  c++  java
  • Power Network

     
    Time Limit: 2000MS   Memory Limit: 32768K
    Total Submissions: 24788   Accepted: 12922

    Description

    A power network consists of nodes (power stations, consumers and dispatchers) connected by power transport lines. A node u may be supplied with an amount s(u) >= 0 of power, may produce an amount 0 <= p(u) <= pmax(u) of power, may consume an amount 0 <= c(u) <= min(s(u),cmax(u)) of power, and may deliver an amount d(u)=s(u)+p(u)-c(u) of power. The following restrictions apply: c(u)=0 for any power station, p(u)=0 for any consumer, and p(u)=c(u)=0 for any dispatcher. There is at most one power transport line (u,v) from a node u to a node v in the net; it transports an amount 0 <= l(u,v) <= lmax(u,v) of power delivered by u to v. Let Con=Σuc(u) be the power consumed in the net. The problem is to compute the maximum value of Con. 

    An example is in figure 1. The label x/y of power station u shows that p(u)=x and pmax(u)=y. The label x/y of consumer u shows that c(u)=x and cmax(u)=y. The label x/y of power transport line (u,v) shows that l(u,v)=x and lmax(u,v)=y. The power consumed is Con=6. Notice that there are other possible states of the network but the value of Con cannot exceed 6. 

    Input

    There are several data sets in the input. Each data set encodes a power network. It starts with four integers: 0 <= n <= 100 (nodes), 0 <= np <= n (power stations), 0 <= nc <= n (consumers), and 0 <= m <= n^2 (power transport lines). Follow m data triplets (u,v)z, where u and v are node identifiers (starting from 0) and 0 <= z <= 1000 is the value of lmax(u,v). Follow np doublets (u)z, where u is the identifier of a power station and 0 <= z <= 10000 is the value of pmax(u). The data set ends with nc doublets (u)z, where u is the identifier of a consumer and 0 <= z <= 10000 is the value of cmax(u). All input numbers are integers. Except the (u,v)z triplets and the (u)z doublets, which do not contain white spaces, white spaces can occur freely in input. Input data terminate with an end of file and are correct.

    Output

    For each data set from the input, the program prints on the standard output the maximum amount of power that can be consumed in the corresponding network. Each result has an integral value and is printed from the beginning of a separate line.

    Sample Input

    2 1 1 2 (0,1)20 (1,0)10 (0)15 (1)20
    7 2 3 13 (0,0)1 (0,1)2 (0,2)5 (1,0)1 (1,2)8 (2,3)1 (2,4)7
             (3,5)2 (3,6)5 (4,2)7 (4,3)5 (4,5)1 (6,0)5
             (0)5 (1)2 (3)2 (4)1 (5)4

    Sample Output

    15
    6

    Hint

    The sample input contains two data sets. The first data set encodes a network with 2 nodes, power station 0 with pmax(0)=15 and consumer 1 with cmax(1)=20, and 2 power transport lines with lmax(0,1)=20 and lmax(1,0)=10. The maximum value of Con is 15. The second data set encodes the network from figure 1.
     
    中文说一下

    多组数据,每组先是有四个数据 N,np,nc,M 其中N表示节点数(包括用电用户,中继站,发电站的总数)np表示发电站的个数,nc表示,用电户的个数,M表示电线的个数

    然后再输出M组数据表示电线,每根电线用(u,v)z表示表示从u到v最多可以传送的电量为z

    再输出np个发电站,每个发电站形式是(u)z表示发电站u可以发电最多z

    最后输出nc个用电户,每个用电户的形式是(u)z,表示用电户u最多会用z的电

    这题用最大流方法可以求解。这题使用求Ford-Fulkerson方法求最大流,使用BFS的算法称为Edmonds-Karp算法。

     1 #include <iostream>
     2 #include<stdlib.h>
     3 #include<stdio.h>
     4 #include<string.h>
     5 #include<queue>
     6 #define INF 100000
     7 using namespace std;
     8 int map[103][103],path[103],flow[103],start,end;
     9 queue<int> q;
    10 int BFS(){
    11     while(!q.empty())q.pop();
    12     memset(path,-1,sizeof(path));
    13     q.push(start);
    14     path[start]=0;
    15     flow[start]=INF;
    16     while(!q.empty()){
    17         int v=q.front();
    18         q.pop();
    19         if(v==end)
    20             break;
    21         for(int i=1;i<=end;i++){
    22             if(i!=start&&map[v][i]&&path[i]==-1){
    23                 flow[i]=flow[v]<map[v][i]?flow[v]:map[v][i];
    24                 q.push(i);
    25                 path[i]=v;
    26             }
    27         }
    28     }
    29     if(path[end]==-1) return -1;
    30     else
    31         return flow[end];
    32 }
    33 int Edmonds_Karp(){
    34     int max_flow,step,now,pre;
    35     max_flow=0;
    36     while(1){
    37         step=BFS();
    38         if(step==-1)
    39             break;
    40         max_flow+=step;
    41         now=end;
    42         while(now!=start){
    43             pre=path[now];
    44             map[pre][now]-=step;
    45             map[now][pre]+=step;
    46             now=pre;
    47         }
    48     }
    49     return max_flow;
    50 }
    51 int main() {
    52     int n,np,nc,m;
    53 
    54     while(~scanf("%d %d %d %d",&n,&np,&nc,&m)){
    55         memset(map,0,sizeof(map));
    56         getchar();
    57         for(int i=0;i<m;i++){
    58             int u,v,f;
    59             scanf(" (%d,%d)%d ",&u,&v,&f);
    60             map[u+2][v+2]=f;
    61 
    62         }
    63         for(int i=0;i<np;i++){
    64             int s,f;
    65             scanf(" (%d)%d ",&s,&f);
    66             map[1][s+2]=f;
    67 
    68         }
    69         for(int i=0;i<nc;i++){
    70             int s,f;
    71             scanf(" (%d)%d ",&s,&f);
    72             map[s+2][n+2]=f;
    73         }
    74         start=1;
    75         end=n+2;
    76         int result=Edmonds_Karp();
    77         printf("%d
    ",result);
    78     }
    79 
    80     return 0;
    81 }
  • 相关阅读:
    解决DeDeCms文章中上传的图片点击新窗口打开的方法
    织梦dedecms 5.7解决修改文章后,发布时间自动更新的方法
    织梦DedeCMS实用技巧-八大安全措施
    data目录迁移到web以外目录
    《DSP using MATLAB》示例Example6.6
    《DSP using MATLAB》示例 Example 6.5
    《DSP using MATLAB》示例Example6.4
    《DSP using MATLAB 》示例Example6.3
    《DSP using MATLAB》示例Example6.2
    《DSP using MATLAB》示例Example6.1
  • 原文地址:https://www.cnblogs.com/sdxk/p/4677207.html
Copyright © 2011-2022 走看看