HDU 1669 二分+多重匹配

来源:互联网 发布:数据库表设计例子 编辑:程序博客网 时间:2024/06/05 21:51

Jamie's Contact Groups

Time Limit: 15000/7000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
Total Submission(s): 403    Accepted Submission(s): 124


Problem Description
Jamie is a very popular girl and has quite a lot of friends, so she always keeps a very long contact list in her cell phone. The contact list has become so long that it often takes a long time for her to browse through the whole list to find a friend's number. As Jamie's best friend and a programming genius, you suggest that she group the contact list and minimize the size of the largest group, so that it will be easier for her to search for a friend's number among the groups. Jamie takes your advice and gives you her entire contact list containing her friends' names, the number of groups she wishes to have and what groups every friend could belong to. Your task is to write a program that takes the list and organizes it into groups such that each friend appears in only one of those groups and the size of the largest group is minimized. 
 

Input
There will be at most 20 test cases. Ease case starts with a line containing two integers N and M. where N is the length of the contact list and M is the number of groups. N lines then follow. Each line contains a friend's name and the groups the friend could belong to. You can assume N is no more than 1000 and M is no more than 500. The names will contain alphabet letters only and will be no longer than 15 characters. No two friends have the same name. The group label is an integer between 0 and M - 1. After the last test case, there is a single line `0 0' that terminates the input.
 

Output
For each test case, output a line containing a single integer, the size of the largest contact group. 
 

Sample Input
3 2John 0 1Rose 1Mary 15 4ACM 1 2 3ICPC 0 1Asian 0 2 3Regional 1 2ShangHai 0 20 0
 

Sample Output
22
 

Source
2004 Asia Regional Shanghai
 

Recommend
xhd   |   We have carefully selected several similar problems for you:  1661 1663 1667 1662 1664 
 


二分+多重匹配。。。


代码:

//二分多重匹配,复杂度#pragma comment(linker,"/STACK:102400000,102400000")#include <iostream>#include <string.h>#include <stdio.h>#include <algorithm>#include <vector>#include <string>#include <math.h>#include <queue>#include <stack>#include <map>#include <set>using namespace std;typedef long long ll;   //记得必要的时候改成无符号const int maxn=100005;   //点数const int maxm=2000005;   //边数struct EdgeNode{    int to;    int next;}edge[maxm];int head[maxn],cnt;void add(int x,int y){    edge[cnt].to=y;edge[cnt].next=head[x];head[x]=cnt++;}struct q{    int pre[maxn],lim,num;}a[505];int n,m,v[505];       //v[]标记的是右边的集合void init(){    cnt=1;    memset(head,-1,sizeof(head));}bool dfs(int x){    int y;    for(int i=head[x];i!=-1;i=edge[i].next)    {        y=edge[i].to;        if(!v[y])        {            v[y]=1;            if(a[y].num<a[y].lim)            {                a[y].pre[++a[y].num]=x;                return true;            }            for(int j=1;j<=a[y].lim;j++)            {                if(dfs(a[y].pre[j]))                {                    a[y].pre[j]=x;                    return true;                }            }        }    }    return false;}bool Mulmatch(int num){    for(int i=0;i<m;i++)    {        a[i].lim=num;        a[i].num=0;    }    for(int i=0;i<n;i++)    {        memset(v,0,sizeof(v));        if(!dfs(i))            return false;    }    return true;}char s[maxn];int main(){    int i,j,t,l,r,mid,chu;    while(~scanf("%d%d",&n,&m)&&(n+m))    {        getchar(); init();        memset(v,0,sizeof(v));        for(i=0;i<n;i++){            gets(s);            int len=strlen(s);            for(j=0;s[j]!=' ';j++); j++; t=0;            for(;j<len;j++){                if(s[j]==' '){                    v[t]++;                    add(i,t);                    t=0;                }                else t=t*10+s[j]-'0';            }            v[t]++;            add(i,t);        }        l=0; r=-1;        for(i=0;i<m;i++)r=max(r,v[i]);        while(l<=r){            mid=(l+r)/2;            if(Mulmatch(mid)){                chu=mid;                r=mid-1;            }            else l=mid+1;        }        printf("%d\n",chu);    }    return 0;}



0 0
原创粉丝点击