新的技术正冲击着手机通讯市场,对于各大运营商来说,这既是 机遇,更是挑战。THU集团旗下的CS&T通讯公司在新一代通讯技术血战的前夜,需要做太多的准备工作,仅就站址选择一项,就需要完成前期市场研 究、站址勘测、最优化等项目。在前期市场调查和站址勘测之后,公司得到了一共N个可以作为通讯信号中转站的地址,而由于这些地址的地理位置差异,在不同的 地方建造通讯中转站需要投入的成本也是不一样的,所幸在前期调查之后这些都是已知数据:建立第i个通讯中转站需要的成本为Pi(1≤i≤N)。另外公司调 查得出了所有期望中的用户群,一共M个。关于第i个用户群的信息概括为Ai, Bi和Ci:这些用户会使用中转站Ai和中转站Bi进行通讯,公司可以获益Ci。(1≤i≤M, 1≤Ai, Bi≤N) THU集团的CS&T公司可以有选择的建立一些中转站(投入成本),为一些用户提供服务并获得收益(获益之和)。那么如何选择最终建立的中转站才 能让公司的净获利最大呢?(净获利 = 获益之和 - 投入成本之和)
输入文件中第一行有两个正整数N和M 。第二行中有N个整数描述每一个通讯中转站的建立成本,依次为P1, P2, …, PN 。以下M行,第(i + 2)行的三个数Ai, Bi和Ci描述第i个用户群的信息。所有变量的含义可以参见题目描述。
你的程序只要向输出文件输出一个整数,表示公司可以得到的最大净获利。
【样例说明】选择建立1、2、3号中转站,则需要投入成本6,获利为10,因此得
到最大收益4。【评分方法】本题没有部分分,你的程序的输出只有和我们的答案完全一致才能获得满分,否则不得分。【数据规模和约定】
80%的数据中:N≤200,M≤1 000。 100%的数据中:N≤5 000,M≤50 000,0≤Ci≤100,0≤Pi≤100。
因为要最大化图中的点权和,显然我们期望选取尽可能多的正权点,但是每当我们选取了正权点我们就不得不选取一些正权点连接的其他负权点。同时,如果我们在选取正权点的时候所带来的负权点还要负的更多显然我们不能选这个正权点。不妨设tot为所有正权点的点权和,我们希望得到一个最大值ans,并且等于选取的正权和-负权绝对值和。所以ans=tot-不选取的正权和+负权绝对值和,即ans=tot-(不选取的正权和-负权绝对值和)
1 //It is made by jump~
2 #include <iostream>
3 #include <cstdlib>
4 #include <cstring>
5 #include <cstdio>
6 #include <cmath>
7 #include <algorithm>
8 #include <ctime>
9 #include <vector>
10 #include <queue>
11 #include <map>
12 #include <set>
13 #ifdef WIN32
14 #define OT "%I64d"
15 #else
16 #define OT "%lld"
17 #endif
18 using namespace std;
19 typedef long long LL;
20 const int MAXN = 55011;
21 const int MAXM = 500011;
22 const int inf = (1<<29);
23 int n,m,S,T;
24 int first[MAXN],ecnt,deep[MAXN];
25 int ans,tot;
26 queue<int>Q;
27 struct edge{
28 int to,next,f;
29 }e[MAXM];
30
31 inline int getint()
32 {
33 int w=0,q=0;
34 char c=getchar();
35 while((c<‘0‘ || c>‘9‘) && c!=‘-‘) c=getchar();
36 if (c==‘-‘) q=1, c=getchar();
37 while (c>=‘0‘ && c<=‘9‘) w=w*10+c-‘0‘, c=getchar();
38 return q ? -w : w;
39 }
40
41 inline void link(int x,int y,int z){
42 e[++ecnt].next=first[x]; first[x]=ecnt; e[ecnt].to=y; e[ecnt].f=z;
43 e[++ecnt].next=first[y]; first[y]=ecnt; e[ecnt].to=x; e[ecnt].f=0;
44 }
45
46 inline bool BFS(){
47 while(!Q.empty()) Q.pop();
48 for(int i=1;i<=T;i++) deep[i]=inf;
49 Q.push(S); deep[S]=1;
50 while(!Q.empty()) {
51 int u=Q.front(); Q.pop();
52 for(int i=first[u];i;i=e[i].next) {
53 if(e[i].f && deep[e[i].to]==inf) {
54 Q.push(e[i].to); deep[e[i].to]=deep[u]+1;
55 }
56 }
57 }
58 if(deep[T]==inf) return false;
59 return true;
60 }
61
62 inline int maxflow(int x,int remain){
63 if(x==T || remain==0) return remain;//剪枝
64 int flow=0,f;
65 for(int i=first[x];i;i=e[i].next) {
66 if(e[i].f && deep[e[i].to]==deep[x]+1) {
67 int v=e[i].to; f=maxflow(v,min(remain,e[i].f));
68 if(f) {
69 flow+=f; e[i].f-=f; e[i^1].f+=f;
70 remain-=f;
71 if(remain==0) return flow;
72 }
73 else deep[v]=-1;
74 }
75 }
76 return flow;
77 }
78
79 inline void work(){
80 n=getint(); m=getint(); ecnt=1;
81 S=m+n+1;T=S+1; int x;
82 for(int i=1;i<=n;i++) x=getint(),link(i,T,x);
83 for(int i=1;i<=m;i++) {
84 x=getint(); link(i+n,x,inf);
85 x=getint(); link(i+n,x,inf);
86 x=getint(); tot+=x; link(S,i+n,x);
87 }
88 while(BFS()) { ans+=maxflow(S,inf); }
89 printf("%d",tot-ans);
90 }
91
92 int main()
93 {
94 work();
95 return 0;
96 }