题目
Given two sets of integers, the similarity of the sets is defined to be where is the number of distinct common numbers shared by the two sets, and is the total number of distinct numbers in the two sets. Your job is to calculate the similarity of any given pair of sets.
Input Specification:
Each input file contains one test case. Each case first gives a positive integerwhich is the total number of sets. Then N lines follow, each gives a set with a positive and followed by M integers in the range . After the input of sets, a positive integer K (≤2000) is given, followed by K lines of queries. Each query gives a pair of set numbers (the sets are numbered from 1 to N). All the numbers in a line are separated by a space.
Output Specification:
For each query, print in one line the similarity of the sets, in the percentage form accurate up to 1 decimal place.
Sample Input:
1 | 3 |
Sample Output:
1 | 50.0% |
题解
思路
- Python的集合有交,并这些自带的函数
- So,你懂得。
数据结构
- sets 存放所有的集合
- a,b是要计算的两个集合
算法
- 使用自带的计算集合交并的方式。
代码
- 由于使用Python能AC,因此只放了Python的代码。
1 | sets = [] |