Interesting Housing Problem
Time Limit: 10000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2220 Accepted Submission(s): 828
Problem Description
For any school, it is hard to find a feasible accommodation plan with every student assigned to a suitable apartment while keeping everyone happy, let alone an optimal one. Recently the president of University ABC, Peterson, is facing a similar problem. While
Peterson does not like the idea of delegating the task directly to the class advisors as so many other schools are doing, he still wants to design a creative plan such that no student is assigned to a room he/she dislikes, and the overall quality of the plan
should be maximized. Nevertheless, Peterson does not know how this task could be accomplished, so he asks you to solve this so-called "interesting" problem for him.
Suppose that there are N students and M rooms. Each student is asked to rate some rooms (not necessarily all M rooms) by stating how he/she likes the room. The rating can be represented as an integer, positive value meaning that the student consider the room to be of good quality, zero indicating neutral, or negative implying that the student does not like living in the room. Note that you can never assign a student to a room which he/she has not rated, as the absence of rating indicates that the student cannot live in the room for other reasons.
With limited information available, you've decided to simply find an assignment such that every student is assigned to a room he/she has rated, no two students are assigned to the same room, and the sum of rating is maximized while satisfying Peterson's requirement. The question is … what exactly is the answer?
Suppose that there are N students and M rooms. Each student is asked to rate some rooms (not necessarily all M rooms) by stating how he/she likes the room. The rating can be represented as an integer, positive value meaning that the student consider the room to be of good quality, zero indicating neutral, or negative implying that the student does not like living in the room. Note that you can never assign a student to a room which he/she has not rated, as the absence of rating indicates that the student cannot live in the room for other reasons.
With limited information available, you've decided to simply find an assignment such that every student is assigned to a room he/she has rated, no two students are assigned to the same room, and the sum of rating is maximized while satisfying Peterson's requirement. The question is … what exactly is the answer?
Input
There are multiple test cases in the input file. Each test case begins with three integers, N, M, and E (1 <= N <= 500, 0 <= M <= 500, 0 <= E <= min(N * M, 50000)), followed by E lines, each line containing three numbers, Si, Ri, Vi,
(0 <= Si < N, 0 <= Ri < M, |Vi| <= 10000), describing the rating Vi given by student Sifor room Ri. It is guaranteed that each student will rate each room at most once.
Each case is followed by one blank line. Input ends with End-of-File.
Each case is followed by one blank line. Input ends with End-of-File.
Output
For each test case, please output one integer, the requested value, on a single line, or -1 if no solution could be found. Use the format as indicated in the sample output.
Sample Input
3 5 5 0 1 5 0 2 7 1 1 6 1 2 3 2 4 5 1 1 1 0 0 0 1 1 0
Sample Output
Case 1: 18 Case 2: 0 Case 3: -1题意:有n个学生和m个房间,要给每个学生安排一个房间,一个房间只能容纳一个学生。每个学生对于一些房间都有一个rate值,学生不能住rate为负和没有rate的房间。求能否使每个学生都能安排到房间,且学生对于入住的房间的总rate值最大。若能,输出这个最大值。思路:km算法解最大权值匹配。注意rate为负的边直接舍弃。AC代码:#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <algorithm> #include <queue> #include <vector> #include <cmath> #include <cstdlib> #define L(rt) (rt<<1) #define R(rt) (rt<<1|1) #define ll long long #define eps 1e-6 using namespace std; const int maxn=505; const int INF=1000000000; int G[maxn][maxn],lx[maxn],match[maxn],ly[maxn],slack[maxn]; bool visx[maxn],visy[maxn]; int n,m; bool find(int u) { visx[u]=true; for(int i=0; i<m; i++) { if(visy[i]) continue; if(lx[u]+ly[i]==G[u][i]) { visy[i]=true; if(match[i]==-1||find(match[i])) { match[i]=u; return true; } } else slack[i]=min(slack[i],lx[u]+ly[i]-G[u][i]); } return false; } void KM() { memset(match,-1,sizeof(match)); for(int i=0; i<n; i++) lx[i]=-INF; memset(ly,0,sizeof(ly)); for(int i=0; i<n; i++) for(int j=0; j<m; j++) lx[i]=max(lx[i],G[i][j]); for(int i=0; i<n; i++) { for(int j=0; j<m; j++) slack[j]=INF; while(1) { memset(visx,false,sizeof(visx)); memset(visy,false,sizeof(visy)); if(find(i)) break; else { int temp=INF; for(int j=0; j<m; j++) if(!visy[j]&&temp>slack[j]) temp=slack[j]; for(int j=0; j<n; j++) if(visx[j]) lx[j]-=temp; for(int j=0; j<m; j++) { if(visy[j]) ly[j]+=temp; else slack[j]-=temp; } } } } } int main() { int cost,a,b,e,c=0; while(~scanf("%d%d%d",&n,&m,&e)) { for(int i=0; i<n; i++) for(int j=0; j<m; j++) G[i][j]=-INF; while(e--) { scanf("%d%d%d",&a,&b,&cost); if(cost<0) continue; G[a][b]=cost; } KM(); printf("Case %d: ",++c); int cnt=0,ans=0; for(int i=0; i<m; i++) { if(match[i]==-1||G[match[i]][i]==-INF) continue; ans+=G[match[i]][i]; cnt++; } if(cnt<n) printf("-1\n"); else printf("%d\n",ans); } return 0; }