L2-005. 集合相似度(set集合)

来源:互联网 发布:数据库管理系统有哪些 编辑:程序博客网 时间:2024/06/07 02:12

给定两个整数集合,它们的相似度定义为:Nc/Nt*100%。其中Nc是两个集合都有的不相等整数的个数,Nt是两个集合一共有的不相等整数的个数。你的任务就是计算任意一对给定集合的相似度。

输入格式:

输入第一行给出一个正整数N(<=50),是集合的个数。随后N行,每行对应一个集合。每个集合首先给出一个正整数M(<=104),是集合中元素的个数;然后跟M个[0, 109]区间内的整数。

之后一行给出一个正整数K(<=2000),随后K行,每行对应一对需要计算相似度的集合的编号(集合从1到N编号)。数字间以空格分隔。

输出格式:

对每一对需要计算的集合,在一行中输出它们的相似度,为保留小数点后2位的百分比数字。

输入样例:
33 99 87 1014 87 101 5 877 99 101 18 5 135 18 9921 21 3
输出样例:
50.00%33.33%





/*输入的时候先将每一个集合去重得到新集合,“两个集合都有的不相等整数的个数” 就是指两个集合的交集个数,“两个集合一共有的不相等整数的个数” 就是指先将两个集合并起来再去重得到的集合元素个数。*/#include <iostream>#include <algorithm>#include <string>#include <stdio.h>#include <string.h>#include <math.h>#include <vector>#include <set>#define ll long longusing namespace std;int main(){    int n, m, k;    while(cin >> n)    {        // 使用 set, 可以进行去重        set<int >s[55];        for (int i = 0;i < n;i ++)        {            cin >> k;            for (int j = 0;j < k;j ++)            {                cin >> m;                s[i].insert(m);            }        }        cin >> m;        int x, y;        set<int> :: iterator it;        for (int i = 0;i < m;i ++)        {            cin >> x >> y;            x --;            y --;            int num = 0;            for (it = s[x].begin(); it != s[x].end(); it ++)            {                // 判断当前元素是否在 s[y] 中出现过                if (s[y].count(*it))                    num ++;            }            // 判断最后一个元素是否在 s[y] 集合中出现过            if (s[y].count(*(s[x].end())))                num ++;//            cout << num << endl;            printf("%.2f%%\n", (double)(num) / ((double)(s[x].size() + s[y].size() - num)) * 100.0);        }    }    return 0;}


0 0
原创粉丝点击