zoukankan      html  css  js  c++  java
  • POJ 2771 Guardian of Decency(最大独立集数=顶点数-最大匹配数)

    题目链接:

    http://poj.org/problem?id=2771

    Description

    Frank N. Stein is a very conservative high-school teacher. He wants to take some of his students on an excursion, but he is afraid that some of them might become couples. While you can never exclude this possibility, he has made some rules that he thinks indicates a low probability two persons will become a couple:
    • Their height differs by more than 40 cm.
    • They are of the same sex.
    • Their preferred music style is different.
    • Their favourite sport is the same (they are likely to be fans of different teams and that would result in fighting).

    So, for any two persons that he brings on the excursion, they must satisfy at least one of the requirements above. Help him find the maximum number of persons he can take, given their vital information.

    Input

    The first line of the input consists of an integer T ≤ 100 giving the number of test cases. The first line of each test case consists of an integer N ≤ 500 giving the number of pupils. Next there will be one line for each pupil consisting of four space-separated data items:
    • an integer h giving the height in cm;
    • a character 'F' for female or 'M' for male;
    • a string describing the preferred music style;
    • a string with the name of the favourite sport.

    No string in the input will contain more than 100 characters, nor will any string contain any whitespace.

    Output

    For each test case in the input there should be one line with an integer giving the maximum number of eligible pupils.

    Sample Input

    2
    4
    35 M classicism programming
    0 M baroque skiing
    43 M baroque chess
    30 F baroque soccer
    8
    27 M romance programming
    194 F baroque programming
    67 M baroque ping-pong
    51 M classicism programming
    80 M classicism Paintball
    35 M baroque ping-pong
    39 F romance ping-pong
    110 M romance Paintball
    

    Sample Output

    3
    7
    
      1 /*
      2 问题
      3 输入n个人的信息,如果他们满足几个条件就视为存在成为一对的关系,求不能成为一对的最大子独立集的顶点个数 
      4 
      5 解题思路
      6 图论的题很绕,让我们理清关系,求最大子图,就是挑几个人,他们相互之间都存在一种不能成为一对的关系,最多有多少人
      7 做图的时候,将存在能成为一对的关系的置为1,否则都置为0,跑一边匈牙利算法得到最大匹配数
      8 那么顶点数n减去最大匹配数就是最大子独立集的个数了。 
      9 */
     10 #include<cstdio>
     11 #include<iostream>
     12 #include<string>
     13 #include<cstring>
     14 #include<cmath>
     15 
     16 using namespace std;
     17 const int maxn=1100;
     18 int n,e[maxn][maxn],fn,mn;
     19 int cx[maxn],cy[maxn];
     20 int book[maxn];
     21 struct PER{
     22     int age;
     23     string sex,music,sport;
     24 }fper[maxn],mper[maxn];
     25 
     26 
     27 int ok(struct PER a, struct PER b);
     28 int maxmatch();
     29 int dfs(int u);
     30 
     31 int main()
     32 {
     33     int T,i,j;
     34     int x;
     35     char s1[100],s2[100],s3[100];
     36     scanf("%d",&T);
     37     while(T--){
     38         scanf("%d",&n);
     39         fn=mn=0;
     40         for(i=0;i<n;i++){
     41             scanf("%d%s%s%s",&x,s1,s2,s3);
     42             if(strcmp(s1,"F") == 0){
     43                 fper[fn].age=x;
     44                 fper[fn].sex=s1;
     45                 fper[fn].music=s2;
     46                 fper[fn].sport=s3;
     47                 fn++;
     48             }
     49             else{
     50                 mper[mn].age=x;
     51                 mper[mn].sex=s1;
     52                 mper[mn].music=s2;
     53                 mper[mn].sport=s3;
     54                 mn++;
     55             }
     56         }
     57         
     58         memset(e,0,sizeof(int)*maxn*maxn);
     59         for(i=0;i<mn;i++){
     60             for(j=0;j<fn;j++){
     61                 if(ok(mper[i],fper[j])) 
     62                     e[i][j]=1;
     63             }
     64         }
     65         printf("%d
    ",n-maxmatch());
     66     }
     67     return 0;
     68 }
     69 
     70 int ok(struct PER a, struct PER b){
     71     if(abs(a.age - b.age) > 40)
     72         return 0;
     73     if(a.sex == b.sex)
     74         return 0;
     75     if(a.music != b.music)
     76         return 0;
     77     if(a.sport == b.sport)
     78         return 0;
     79         
     80     return 1;
     81 }
     82 
     83 int dfs(int u)
     84 {
     85     for(int i=0;i<fn;i++){
     86         if(book[i] == 0 && e[u][i]){
     87             book[i]=1;
     88             
     89             if(cy[i] == -1 || dfs(cy[i])){
     90                 cx[u]=i;
     91                 cy[i]=u;
     92                 return 1;
     93             }
     94         }
     95     }    
     96     return 0;
     97 }    
     98 
     99 int maxmatch()
    100 {
    101     int i;
    102     memset(cx,-1,sizeof(cx));
    103     memset(cy,-1,sizeof(cy));
    104     int ans=0;
    105     for(i=0;i<mn;i++){
    106         if(cx[i] == -1){
    107             memset(book,0,sizeof(book));
    108             if(dfs(i))    ans++;
    109         }
    110     }
    111     return ans;
    112 }
  • 相关阅读:
    思科 ASA 系列防火墙 官方文档下载指南
    Batch批量替换hosts
    OPCDA通信--工作在透明模式下的CISCO ASA 5506-X防火墙配置
    OPC DA通讯 KEP6.4 DCOM 配置脚本
    拖放获取文件信息的bat代码
    禁用UpdateOrchestrator重新启动任务
    SIAMATIC S7-1200 中通过 Modbus RTU 如何读取地址范围 9999 到 65535 的输入字
    提问的智慧 (提问前必读)
    [AHK]输入法状态提示,中文状态提示“中”,英文状态提示“EN”[转]
    Wincc V7.3SE安装截图
  • 原文地址:https://www.cnblogs.com/wenzhixin/p/9074056.html
Copyright © 2011-2022 走看看