Problem A

 

Problem A

#include <iostream>
using namespace std;
#include <vector>

const int maxn=1010;
int used[maxn];
int link[maxn];
vector<int > V[maxn];

bool dp(int u)
{
    int size = V[u].size();
    for(int i=0; i<size; i++)
    {
        int v = V[u][i];    //u  的配偶
        if(!used[v])
        {
            used[v] = true;
            if(link[v] == -1 || dp(link[v]))     //dp(link[v]   拆分与重建
            {
                link[v] = u;      //找配偶,然后建“之”字路
                return true;
            }
        }
    }
    return false;
}

int main()
{
    int k,n,m;
    int a,b;
    while (cin>>k,k)
    {
        cin>>n>>m;
        for (int i=0;i<maxn;i++)
            V[i].clear ();

        for (i=0;i<k;i++)
        {
            cin>>a>>b;
            V[a].push_back (b+500);
        }
/*
        for (i=0;i<10;i++)
        {
            for (int j=0;j<V[i].size ();j++)
            {
                cout<<V[i][j]<<"   ";
            }
            cout<<endl;
        }

*/
        memset(link,-1,sizeof(link));
        int count=0;
        for(i=1; i<=n; i++) 
        {
            memset(used,0,sizeof(used)); 
            if (dp(i))
                count++;

        }
        cout<<count<<endl;
        
    }
    return 0;
}





    

 

Time Limit : 1000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 49   Accepted Submission(s) : 14

Font: Times New Roman | Verdana | Georgia

Font Size: ← →

Problem Description

RPG girls今天和大家一起去游乐场玩,终于可以坐上梦寐以求的过山车了。可是,过山车的每一排只有两个座位,而且还有条不成文的规矩,就是每个女生必须找个个男生做partner和她同坐。但是,每个女孩都有各自的想法,举个例子把,Rabbit只愿意和XHD或PQK做partner,Grass只愿意和linle或LL做partner,PrincessSnow愿意和水域浪子或伪酷儿做partner。考虑到经费问题,boss刘决定只让找到partner的人去坐过山车,其他的人,嘿嘿,就站在下面看着吧。聪明的Acmer,你可以帮忙算算最多有多少对组合可以坐上过山车吗?

Input

输入数据的第一行是三个整数K , M , N,分别表示可能的组合数目,女生的人数,男生的人数。0<K<=1000
1<=N 和M<=500.接下来的K行,每行有两个数,分别表示女生Ai愿意和男生Bj做partner。最后一个0结束输入。

Output

对于每组数据,输出一个整数,表示可以坐上过山车的最多组合数。

Sample Input

6 3 3
1 1
1 2
1 3
2 1
2 3
3 1
0

Sample Output

posted on 2013-09-04 19:55  不知妖精  阅读(201)  评论(0编辑  收藏  举报

导航