青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

The 2010 ACM-ICPC Asia Chengdu Regional Contest - J Similarity 二分圖最佳匹配

When we were children, we were always asked to do the classification homework. For example, we were given words {Tiger, Panda, Potato, Dog, Tomato, Pea, Apple, Pear, Orange, Mango} and we were required to classify these words into three groups. As you know, the correct classification was {Tiger, Panda, Dog}, {Potato, Tomato, Pea} and {Apple, Pear, Orange, Mango}. We can represent this classification with a mapping sequence {A,A,B,A,B,B,C,C,C,C}, and it means Tiger, Panda, Dog belong to group A, Potato, Tomato, Pea are in the group B, and Apple, Pear, Orange, Mango are in the group C.

But the LABEL of group doesn't make sense and the LABEL is just used to indicate different groups. So the representations {P,P,O,P,O,O,Q,Q,Q,Q} and {E,E,F,E,F,F,W,W,W,W} are equivalent to the original mapping sequence. However, the representations {A,A,A,A,B,B,C,C,C,C} and {D,D,D,D,D,D,G,G,G,G} are not equivalent.

Similarity

The pupils in class submit their mapping sequences and the teacher should read and grade the homework. The teacher grades the homework by calculating the maximum similarity between pupils' mapping sequences and the answer sequence. The definition of similarity is as follow.

Similarity(S, T) = sum(Si == Ti) / L

L = Length(S) = Length(T), i = 1, 2,... L, where sum(Si == Ti) indicates the total number of equal labels in corresponding positions.

The maximum similarity means the maximum similarities between S and all equivalent sequences of T, where S is the answer and fixed.

Now given all sequences submitted by pupils and the answer sequence, you should calculate the sequences' maximum similarity.

Input

The input contains multiple test cases. The first line is the total number of cases T (T < 15). The following are T blocks. Each block indicates a case. A case begins with three numbers n (0 < n < 10000), k (0 < k < 27), m (0 < m < 30), which are the total number of objects, groups, and students in the class. The next line consists of n labels and each label is in the range [A...Z]. You can assume that the number of different labels in the sequence is exactly k. This sequence represents the answer. The following are m lines, each line contains n labels and each label also is in the range [A...Z]. These m lines represent the m pupils' answer sequences. You can assume that the number of different labels in each sequence doesn't exceed k.

Output

For each test case, output m lines, each line is a floating number (Round to 4 digits after the decimal point). You should output the m answers in the order of the sequences appearance.

Sample Input

2
10 3 3
A A B A B B C C C C
F F E F E E D D D D
X X X Y Y Y Y Z Z Z
S T R S T R S T R S
3 2 2
A B A
C D C
F F E

Sample Output

1.0000
0.7000
0.5000
1.0000
0.6667
簡明題意:
將N個物品分成K組,一個字母代表一類,然后給出2種分組方案,求最大相似度
說白了,這題就是字母的匹配,而權值則為該對匹配對應的字母個數,要求求得一種匹配方案,使得權值和最大。
解法:KM
代碼:
  1# include <stdio.h>
  2# include <string.h>
  3# include <stdbool.h>
  4# define N 201
  5# define max(a,b) ((a)>(b)?(a):(b))
  6# define min(a,b) ((a)<(b)?(a):(b))
  7# define abs(a) ((a)>0?(a):-(a))
  8int map[35][35],ln[N],rn[N],match[N];
  9const int n=26;
 10bool l[N],r[N];
 11int c=0;
 12void init()
 13{
 14  int i,j,p;
 15  memset(match,-1,sizeof(match));
 16  memset(rn,0,sizeof(rn));
 17  for(i=0;i<n;i++)
 18  {
 19     ln[i]=-0xfffffff;
 20     for(j=0;j<n;j++)
 21        ln[i]=max(ln[i],map[i][j]);
 22  }

 23}

 24void adjust()
 25{
 26   int i,j,minnum=0xfffffff,p;
 27   for(i=0;i<n;i++)
 28     if(l[i])
 29     {
 30        for(j=0;j<n;j++)
 31          if(!r[j])
 32             minnum=min(minnum,ln[i]+rn[j]-map[i][j]);
 33     }

 34   for(i=0;i<n;i++)
 35   {
 36     if(l[i])
 37        ln[i]-=minnum;
 38     if(r[i])
 39        rn[i]+=minnum;
 40   }
       
 41}

 42int dfs(int pos)
 43{
 44    int i;
 45    l[pos]=1;
 46    for(i=0;i<n;i++)
 47    if(!r[i]&&ln[pos]+rn[i]==map[pos][i])
 48    {
 49        r[i]=1;
 50        if(match[i]==-1||dfs(match[i]))
 51        {
 52           match[i]=pos;
 53           return 1;
 54        }

 55    }

 56    return 0;
 57}

 58int main()
 59{
 60    int t;
 61    scanf("%d",&t);
 62    while(t--)
 63    {
 64       int num,k,m,i;
 65       char std[10001],tmp[3];
 66       scanf("%d%d%d",&num,&k,&m);
 67       for(i=0;i<num;i++)
 68       {
 69          scanf("%s",tmp);
 70          std[i]=tmp[0];
 71       }

 72       while(m--)
 73       {
 74         int total=0;
 75         memset(map,0,sizeof(map));
 76         for(i=0;i<num;i++)
 77         {
 78            scanf("%s",tmp);
 79            map[std[i]-'A'][tmp[0]-'A']++;            
 80         }

 81         init();
 82         for(i=0;i<26;i++)
 83         {
 84            while(1)
 85            {
 86               memset(l,0,sizeof(l));
 87               memset(r,0,sizeof(r));
 88               if(dfs(i)) break;
 89               else adjust();
 90            }
   
 91         }

 92         for(i=0;i<26;i++)
 93           total+=map[match[i]][i];
 94         printf("%.4f\n",total/(double)num);
 95       }

 96       
 97    }

 98    return 0;
 99}

100
101

posted on 2010-11-16 00:34 yzhw 閱讀(662) 評論(0)  編輯 收藏 引用 所屬分類: graph

<2011年1月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
303112345

導航

統計

公告

統計系統

留言簿(1)

隨筆分類(227)

文章分類(2)

OJ

最新隨筆

搜索

積分與排名

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            在线看日韩欧美| 一区二区日韩精品| 看片网站欧美日韩| 久久九九电影| 亚洲国产一区二区三区高清| 欧美成人中文字幕| 蜜桃伊人久久| 亚洲视频在线视频| 亚洲综合欧美| 在线看成人片| 日韩写真视频在线观看| 国产精品久久久久久户外露出| 欧美一级夜夜爽| 久久精品一区| 99精品视频网| 午夜国产精品影院在线观看| 亚洲大胆av| 一区二区三区视频在线看| 国产日韩视频| 亚洲激情校园春色| 国产精品美女主播| 欧美不卡高清| 国产精品成人在线| 麻豆精品视频在线观看视频| 欧美日韩国产成人在线91| 欧美亚洲视频在线看网址| 老色批av在线精品| 欧美亚洲一区二区在线观看| 蜜臀a∨国产成人精品 | 欧美成人有码| 亚洲女人天堂av| 麻豆精品传媒视频| 欧美一区二区三区日韩| 欧美成人亚洲成人| 久久大香伊蕉在人线观看热2| 免费在线观看一区二区| 欧美一区影院| 欧美日韩在线直播| 欧美大片在线看免费观看| 国产精品夜夜夜| 日韩一区二区电影网| 亚洲国产欧美一区| 亚洲欧美视频一区| 中国成人黄色视屏| 欧美成人精品一区二区三区| 久久九九国产精品怡红院| 国产精品国产三级国产| 亚洲国产欧美久久| 亚洲第一级黄色片| 久久国产精品亚洲va麻豆| 亚洲欧美综合一区| 欧美三级韩国三级日本三斤| 亚洲国产激情| 亚洲电影免费观看高清完整版| 亚洲免费伊人电影在线观看av| 中国av一区| 欧美久久电影| 亚洲人成在线观看| 亚洲精选一区二区| 欧美激情按摩在线| 亚洲福利视频在线| 亚洲九九爱视频| 欧美精品性视频| 91久久国产综合久久| 亚洲精品社区| 欧美激情网友自拍| 亚洲黄色一区二区三区| 亚洲毛片一区| 欧美日韩性生活视频| 99精品久久| 午夜精品av| 国产午夜精品福利| 久久久久久久网| 亚洲福利免费| 中文久久精品| 国产精品综合久久久| 性欧美超级视频| 免费观看久久久4p| 亚洲国产综合91精品麻豆| 欧美不卡一卡二卡免费版| 亚洲人成在线播放| 亚洲影院色无极综合| 国产日韩一级二级三级| 久久久久国产精品午夜一区| 欧美激情一区二区三区在线 | 国产精品高潮呻吟久久av无限| 亚洲午夜激情免费视频| 欧美一区二区三区久久精品茉莉花| 国产精品一区免费观看| 久久精品国产亚洲一区二区三区| 欧美aaa级| 国产精品99久久久久久久久久久久| 国产精品久久久久久久久| 久久精品噜噜噜成人av农村| 亚洲高清在线视频| 亚洲欧美综合精品久久成人| 精品动漫3d一区二区三区| 欧美激情中文字幕一区二区| 亚洲性视频网站| 美国十次了思思久久精品导航| 99riav久久精品riav| 国产精品性做久久久久久| 老鸭窝亚洲一区二区三区| 亚洲视频视频在线| 欧美福利视频| 亚欧美中日韩视频| 一本久道久久综合婷婷鲸鱼| 国产欧美日韩综合精品二区| 欧美肥婆bbw| 久久本道综合色狠狠五月| 亚洲国内高清视频| 久久亚洲欧美| 性欧美video另类hd性玩具| 亚洲国产中文字幕在线观看| 国产欧美一区二区三区久久人妖 | 亚洲性线免费观看视频成熟| 牛牛精品成人免费视频| 午夜日韩av| 一本一本久久a久久精品牛牛影视| 国产婷婷色一区二区三区四区| 欧美另类在线播放| 久久天堂精品| 欧美在线观看www| 中文网丁香综合网| 亚洲黄色片网站| 欧美成人精品在线观看| 久久久高清一区二区三区| 中文亚洲视频在线| 日韩手机在线导航| 亚洲欧洲视频在线| 一色屋精品视频在线看| 国产视频一区二区在线观看| 国产精品久久久久毛片软件| 欧美精品一区二区三区很污很色的 | 亚洲精品久久| 激情文学一区| 狠狠综合久久| 极品日韩久久| 极品尤物久久久av免费看| 国产一区二区三区久久久| 国产日韩欧美中文在线播放| 国产精品亚洲产品| 国产精品最新自拍| 国产伦理精品不卡| 国产亚洲欧美日韩一区二区| 国产欧美日韩视频| 国产区在线观看成人精品| 国产欧美二区| 国产亚洲成av人片在线观看桃| 国产日本欧美一区二区三区在线| 国产情侣一区| 国内精品美女av在线播放| 国自产拍偷拍福利精品免费一| 国内精品视频久久| 亚洲第一久久影院| 亚洲日本在线视频观看| 夜夜嗨av一区二区三区| 亚洲图中文字幕| 欧美一区成人| 噜噜爱69成人精品| 亚洲国产日韩一级| 一区二区欧美日韩视频| 亚洲免费视频成人| 久久gogo国模啪啪人体图| 久久综合久久综合久久综合| 欧美v日韩v国产v| 欧美午夜电影网| 国产日韩在线一区二区三区| 经典三级久久| 亚洲色在线视频| 久久高清福利视频| 欧美国产欧美亚洲国产日韩mv天天看完整 | 欧美专区在线观看| 农村妇女精品| 亚洲精品国产无天堂网2021| 国产日韩欧美夫妻视频在线观看| 在线观看成人av电影| 亚洲黄色av一区| 亚洲调教视频在线观看| 99视频日韩| 在线视频亚洲| 亚洲欧美日韩综合aⅴ视频| 久久精品亚洲精品| 亚洲黄色免费| 午夜影院日韩| 欧美精品一区二区三区一线天视频| 国产精品久久影院| 亚洲国产成人午夜在线一区| 亚洲一区二区三区精品动漫| 老色批av在线精品| 一本久道久久综合中文字幕| 久久久综合视频| 国产欧美激情| 亚洲色图综合久久| 欧美成人在线影院| 久久精品国产免费观看| 欧美体内谢she精2性欧美| 亚洲国产裸拍裸体视频在线观看乱了中文| 亚洲一区国产| 亚洲精品资源|