亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Cat VS Dog

系統 2390 0

Cat VS Dog

Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 125536/65536 K (Java/Others)
Total Submission(s): 2046????Accepted Submission(s): 719

?

Problem Description
The zoo have N cats and M dogs, today there are P children visiting the zoo, each child has a like-animal and a dislike-animal, if the child's like-animal is a cat, then his/hers dislike-animal must be a dog, and vice versa.
Now the zoo administrator is removing some animals, if one child's like-animal is not removed and his/hers dislike-animal is removed, he/she will be happy. So the administrator wants to know which animals he should remove to make maximum number of happy children.
?

?

Input
The input file contains multiple test cases, for each case, the first line contains three integers N <= 100, M <= 100 and P <= 500.
Next P lines, each line contains a child's like-animal and dislike-animal, C for cat and D for dog. (See sample for details)
?

?

Output
For each case, output a single integer: the maximum number of happy children.
?

?

Sample Input
1 1 2
C1 D1
D1 C1

?

1 2 4
C1 D1
C1 D1
C1 D2
D2 C1
?

?

Sample Output
1
3

?

Hint
Case 2: Remove D1 and D2, that makes child 1, 2, 3 happy.
?
?

?

Source
2011 Multi-University Training Contest 1 - Host by HNU
?

?

Recommend
xubiao

分析:如果兩個小朋友滿足以下情況:1.A喜歡的是B討厭的.2.A討厭的是B喜歡的.此時這兩個小朋友肯定不能同時高興,那么就在他們之間連一條邊.只要求出此圖的最大獨立集即可.

      #include<stdio.h>
      
        

#include
      
      <
      
        string
      
      .h>


      
        int
      
      
         N,M,P;


      
      
        int
      
       match[
      
        600
      
      
        ];


      
      
        bool
      
       visit[
      
        600
      
      ],G[
      
        600
      
      ][
      
        600
      
      
        ];


      
      
        char
      
       sl[
      
        600
      
      ],sd[
      
        600
      
      
        ];


      
      
        int
      
       pl[
      
        600
      
      ],pd[
      
        600
      
      
        ];


      
      
        bool
      
       DFS(
      
        int
      
      
         k)

{

    
      
      
        for
      
       (
      
        int
      
       i=
      
        1
      
      ;i<=P;i++
      
        )

    
      
      
        if
      
       (G[k][i] && !
      
        visit[i])

    {

        visit[i]
      
      =
      
        1
      
      
        ;

        
      
      
        int
      
       t=
      
        match[i];

        match[i]
      
      =
      
        k;

        
      
      
        if
      
       (t==-
      
        1
      
       || DFS(t)) 
      
        return
      
      
        true
      
      
        ;

        match[i]
      
      =
      
        t;

    }

    
      
      
        return
      
      
        false
      
      
        ;

}


      
      
        int
      
      
         Max_match()

{

    
      
      
        int
      
       ans=
      
        0
      
      
        ;

    memset(match,
      
      -
      
        1
      
      ,
      
        sizeof
      
      
        (match));

    
      
      
        for
      
       (
      
        int
      
       i=
      
        1
      
      ;i<=P;i++
      
        )

    {

        memset(visit,
      
      
        0
      
      ,
      
        sizeof
      
      
        (visit));

        
      
      
        if
      
       (DFS(i)) ans++
      
        ;

    }

    
      
      
        return
      
      
         ans;

}


      
      
        int
      
      
         main()

{

    
      
      
        char
      
      
         tmp;

    
      
      
        int
      
      
         i,j;

    
      
      
        while
      
       (scanf(
      
        "
      
      
        %d%d%d
      
      
        "
      
      ,&N,&M,&P)!=
      
        EOF)

    {

        tmp
      
      =
      
        getchar();

        
      
      
        for
      
       (i=
      
        1
      
      ;i<=P;i++
      
        )

        {

            scanf(
      
      
        "
      
      
        %c%d %c%d
      
      
        "
      
      ,&sl[i],&pl[i],&sd[i],&
      
        pd[i]);

            tmp
      
      =
      
        getchar();

        }

        memset(G,
      
      
        0
      
      ,
      
        sizeof
      
      
        (G));

        
      
      
        for
      
       (i=
      
        1
      
      ;i<=P;i++
      
        )

         
      
      
        for
      
       (j=
      
        1
      
      ;j<=P;j++
      
        )

         
      
      
        if
      
       (i!=
      
        j)

         {

             
      
      
        if
      
       (pl[i]==pd[j] && sl[i]==sd[j]) G[i][j]=
      
        1
      
      
        ;

             
      
      
        if
      
       (pd[i]==pl[j] && sd[i]==sl[j]) G[i][j]=
      
        1
      
      
        ;

         }

        printf(
      
      
        "
      
      
        %d\n
      
      
        "
      
      ,P-Max_match()/
      
        2
      
      
        );

    }

    
      
      
        return
      
      
        0
      
      
        ;

}
      
    

?

Cat VS Dog


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦?。。?/p>

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 色香欲综合成人免费视频 | 在线观看亚洲精品国产 | 亚洲综合国产精品 | 亚洲va欧美va人人爽夜夜嗨 | 亚洲人xx视频 | 免费a级毛片大学生免费观看 | 日本无吗中文字幕免费婷婷 | 色综合久久久久综合99 | 国产日韩一区二区三区在线观看 | 国产尤物视频 | 51精品视频在线一区二区 | 天天色播 | 成人国产精品免费视频 | 日韩精品无码一区二区三区 | 天天做天天爰夜夜爽 | 9久热这里只有精品免费 | 女胁师~牝奴隷调教 | 欧美在线免费观看视频 | 国产成年网站 | 久热草 | 色综合综合网 | 久 在线播放 | 国产免费美女视频 | 国偷盗摄自产福利一区在线 | 岛国精品在线观看 | 手机在线看片不卡中文字幕 | 日韩经典在线 | 国产在线精品网址你懂的 | 一级毛片在线播放 | 色老头一区二区三区 | 完整日本特级毛片 | 国产精品国产 | 国产精品视频第一页 | 欧美久在线观看在线观看 | 91精品国产免费自在线观看 | 日本久久一区二区 | 亚洲成人小视频 | 国产成a人亚洲精v品久久网 | 中文字幕51精品乱码在线 | 91青娱国产 | 91精品国产免费久久国语麻豆 |