L2-005. 集合相似度

来源:互联网 发布:引物设计软件olige 编辑:程序博客网 时间:2024/05/23 02:01

L2-005. 集合相似度
时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
陈越
给定两个整数集合,它们的相似度定义为:Nc/Nt*100%。其中Nc是两个集合都有的不相等整数的个数,Nt是两个集合一共有的不相等整数的个数。你的任务就是计算任意一对给定集合的相似度。

输入格式:

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

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

输出格式:

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

输入样例:
3
3 99 87 101
4 87 101 5 87
7 99 101 18 5 135 18 99
2
1 2
1 3
输出样例:
50.00%
33.33%

题解:原来使用stl的set,可是超时了,,于是看了下别人的博客

代码:

#include <iostream>#include <string>#include <cstring>#include <cstdio>#include <cmath>#include <cstdlib>#include <algorithm>#include <queue>#include <map>#define MST(s,q) memset(s,q,sizeof(s))#define INF 0x3f3f3f3f#define MAXN 1005using namespace std;map<int, bool> mp;int A[55][10005], cnt[55];void Judge(int a, int b){    int i = 0, j = 0;    int equalNum = 0;    while (i < cnt[a] && j < cnt[b])    {        if (A[a][i] == A[b][j])            i++, j++, equalNum++;        else if (A[a][i] > A[b][j])            j++;        else i++;    }    printf("%.2lf%%\n", equalNum * 1.0 * 100 / (cnt[a] + cnt[b] - equalNum) );}int main(){    int N, M;    cin >> N;    int k, a, b;    for (int i = 1; i <= N; i++)    {        cin >> M;        int k = 0;        mp.clear();        for (int j = 0; j < M; j++)        {            scanf("%d", &a);            if (!mp[a])           // 使用map对set里的元素判重            {                mp[a] = true;                A[i][k++] = a;            }        }        cnt[i] = k;          //   得到去重后的集合的size        sort(A[i], A[i] + k); // 排序    }    cin >> k;    while (k--)    {        scanf("%d%d", &a, &b);        Judge(a, b);    }}
0 0